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");
}
}