gridgrouping grid row selection

I''m using the following code in a griddataboundgrid Private Sub CustomerGrid_CellClick(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs) Handles CustomerGrid.CellClick If Not e.RowIndex = 0 Then CustomerGrid.ForceCurrentCellMoveTo = True CustomerGrid.CurrentCell.MoveTo(e.RowIndex, 1) CustomerGrid.Selections.Clear() CustomerGrid.Selections.Add(GridRangeInfo.Row(e.RowIndex)) End Sub What is the equivalent code for a gridgroupinggrid? You can''t use Selections.Add here. Thanks in advance,

1 Reply

AD Administrator Syncfusion Team October 21, 2004 11:52 AM UTC

This forum thread has two ways to handle selecting a current row. http://www.syncfusion.com/Support/Forums/message.aspx?MessageID=18669

Loader.
Up arrow icon