Hello,
in ggc, i have a dataset that contains parentTable related to a childTable.
i have a groupDropArea
when i group by a column of the first level then by a column of second level, in the child groups a blank record appears just after the header, could you please tell me how can i hide this blank record
Thank you very much
AD
Administrator
Syncfusion Team
February 22, 2006 09:48 AM UTC
i verified by printing
MessageBox.Show("Index = " + style.TableCellIdentity.RowIndex.ToString()+ " AND TableCellType " + style.TableCellIdentity.TableCellType.ToString());
it is an AddNewRecordRecordFieldCell that reappears again, i wonder why, because i hide the AddRewRecord in the grid init.
ST
stanleyj
Syncfusion Team
February 22, 2006 10:00 AM UTC
Hi,
Please add the code below to hide the Add new record row at any levels when columns are grouped.
gridGroupingControl1.ChildGroupOptions.ShowAddNewRecordBeforeDetails = false;
Best regards,
Stanley
AD
Administrator
Syncfusion Team
February 22, 2006 11:25 AM UTC
Thank you very much
it''s works
Best Regards