AD
Administrator
Syncfusion Team
December 5, 2006 12:33 PM UTC
Hi,
Use the Model.Selections property to manages selected ranges in the grid. It allows you to add and remove selections, determines selection state of a specific cell. Use the below code to select a row in a grid.
this.gridDataBoundGrid1.Model.Selections.Add(GridRangeInfo.Row(RowIndex
this.gridDataBoundGrid1.SetTopRow(RowIndex);
To show the RowIndicator, you need to set the Binder.CurrentPosition property of the Grid. Here is a code snippet
this.gridDataBoundGrid1.Binder.CurrentPosition = this.gridDataBoundGrid1.Binder.RowIndexToPosition(RowIndex) ;
Best Regards,
Haneef
AD
Administrator
Syncfusion Team
December 5, 2006 01:24 PM UTC
Thanks Haneef !
Any suggestions to resolving the 3rd issue?