highlight the row when clicking on a cell in a gridControl

Is there an easy way of highlighting the whole row of a gridControl when the cell is click?

2 Replies

AD Administrator Syncfusion Team July 29, 2003 04:04 PM UTC

Set grid.ListBoxSelectionMode = SelectionMode.One, and also handle the grid.CurrentCellActivating event and just set e.ColIndex = 0 in your handler.


RO Rome July 29, 2003 04:28 PM UTC

Thanks for your help. It's works like a charm.

Loader.
Up arrow icon