Is current cell an add new record cell - grouping grid

How can I work out if a selected cell is part of a new record row in the TableControlCellClick event? I am using a grouping grid

1 Reply

AD Administrator Syncfusion Team February 22, 2005 02:32 PM UTC

Here is one way you can do it. private void gridGroupingControl1_TableControlCellClick(object sender, GridTableControlCellClickEventArgs e) { GridTableCellStyleInfo style = e.TableControl.Model[e.Inner.RowIndex, e.Inner.ColIndex] as GridTableCellStyleInfo; if(style != null && style.TableCellIdentity.TableCellType == GridTableCellType.AddNewRecordFieldCell) { Console.WriteLine("Clicked new row cell"); } }

Loader.
Up arrow icon