DataBoundGrid Programmatic Row Selection?

Is there a way to programmatically select a row in a DataBoundGrid? Thanks in advance

1 Reply

AD Administrator Syncfusion Team March 15, 2004 08:52 PM UTC

You can make a row the current row by calling this.grid.CurrentCell.MoveTo(rowIndex, 1); If you really want to select it, you can use code like this.grid.Selections.Add(GridRangeInfo.Row(rowIndex));

Loader.
Up arrow icon