I would like to select multiple rows in the ultragrid WITHOUT holding the CTRL key. is it possible?
i have rowSelecteType = extended.
I would like to select multiple rows in the ultragrid WITHOUT holding the CTRL key. is it possible?
i have rowSelecteType = extended.
Depends a bit on what you want to achieve.
If you don't want to allow the users to edit cells, then you can simply set the CellClickAction to RowSelect (next to your rowselecttype)
yourGrid.DisplayLayout.Override.CellClickAction = CellClickAction.RowSelect;
Another option is to make rowselectors visible, the user can then use those to select rows; an other advantage of this is that the user can still edit cells
yourGrid.DisplayLayout.Override.RowSelectors = DefaultableBoolean.True;