I created a custom grid that accepts IEnumerable as an Itemource. However, I could not delete the item inside the items source during the delete method. Will you guys help me using the code below?
static void Main(string[] args) { List<MyData> source = new List<MyData>(); int itemsCount = 20; for (int i = 0; i < itemsCount; i++) { source.Add(new MyData() { Data = "mydata" + i }); } IEnumerable mItemsource = source;
source share