We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

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.
Live Chat Icon For mobile
Up arrow icon