iterate all the rows in the ggc

hi all.
i have a ggc, with some rows grouped by a column.
when the user will click on a button i want to iteraete all the rows, and each row i'm working on i want to check the value of a column.
can you give me a simple example?

1 Reply

AD Administrator Syncfusion Team February 9, 2007 07:20 PM UTC

Hi Shachar,

You can iterate through the Records collection.

// looping through the filtered records.
foreach(Record fr in this.gridGroupingControl1.Table.Records)
{
Console.WriteLine(fr.Info);
}

Please refer to the Essential Grid Evalution center for more details.
http://www.syncfusion.com/support/evalcenter/default.aspx?cNode=5

Best regards,
Haneef

Loader.
Up arrow icon