RB
Ragamathulla B
Syncfusion Team
December 26, 2011 07:50 AM UTC
Hi Shiva,
Thank you for your interest in Syncfusion products.
You can find the ReadOnly style in the row by using 'QueryCellStyleInfo' event. The following code explains the same.
this.gridGroupingControl1.QueryCellStyleInfo += new GridTableCellStyleInfoEventHandler(gridGroupingControl1_QueryCellStyleInfo);
void gridGroupingControl1_QueryCellStyleInfo(object sender, GridTableCellStyleInfoEventArgs e)
{
if (e.Style.ReadOnly == true)
{
Console.WriteLine(string.Format("Row{0} column{1}", e.TableCellIdentity.RowIndex, e.TableCellIdentity.ColIndex));
//code
}
}
Let me know if you have any further concerns.
Regards,
Ragamathullah B.