AddNewRecord

I was wanting to know how to move the new row (one with the asterix) to the bottom of the grid - like in the standard .net grid. Thanks, Prem

2 Replies

AD Administrator Syncfusion Team April 6, 2006 08:32 AM UTC

Hi Prem, You can achieve this by setting ShowAddNewRecordAfterDetails property. this.gridGroupingControl1.TableDescriptor.AllowNew = true; this.gridGroupingControl1.TopLevelGroupOptions.ShowAddNewRecordBeforeDetails = false; this.gridGroupingControl1.TopLevelGroupOptions.ShowAddNewRecordAfterDetails = true; Best regards, Madhan


PR Prem April 6, 2006 01:19 PM UTC

Thanks Madhan Prem >Hi Prem, > >You can achieve this by setting ShowAddNewRecordAfterDetails property. > >this.gridGroupingControl1.TableDescriptor.AllowNew = true; >this.gridGroupingControl1.TopLevelGroupOptions.ShowAddNewRecordBeforeDetails = false; >this.gridGroupingControl1.TopLevelGroupOptions.ShowAddNewRecordAfterDetails = true; > >Best regards, >Madhan

Loader.
Up arrow icon