AD
Administrator
Syncfusion Team
April 21, 2006 08:49 AM UTC
Hi Rahul,
A record can be set as current by calling record.SetCurrent() method. Try the below code snippet in the form load or in the gridGroupingControl.Enter event handler.
if(this.gridGroupingControl1.Table.Records.Count >0)
this.gridGroupingControl1.Table.Records[0].SetCurrent();
Regards,
Calvin.