Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
245
Convert Wingrid rows into a collection.
posted

Hi,

I want to convert all the rows in the wingrid to the new List.

List<class> newcl = new List<class>();

This above class contains all the columns names corresponding to the ultragridrow

Intially i got all the data from the wingrid to datadgridrow

List<UltraGridRow> ugr = new List<UltraGridRow>();

 foreach (UltraGridRow row in grid.Rows)
   {
        ugr.Add(row);
   }

From this ugr i don't know how to convert to the new List. I need some sample code for this solution.