Hi
I would like to know how can we pass ultragrid data into arraylist. Please provide an example.
ArrayList list = new ArrayList();
foreach (UltraGridRow row in grid.Rows)
list.Add(row.Listbject);
Why do you use an ArrayList? List<T> should be used instead.
Thanks for your reply. How to work with List<T> and UltraGrid ??