How can I prevent cell selection in the UltraWinGrid. I want, when clicking on any cell, that the whole row is selected - not specific focus on the cell.
Thanks
Thanks!
Hello Henrik,
Thank you for posting in our forum.
In order to change the behavior of cell click action you may set CellClickAction property. Please note you can set this property at different levels of the grid. More about CellClickAction you may find by following the next link http://help.infragistics.com/Help/Doc/WinForms/2015.1/CLR4.0/html/Infragistics4.Win.UltraWinGrid.v15.1~Infragistics.Win.UltraWinGrid.CellClickAction.html.
To force clicking on any cell of the grid to select the cell’s row you may use code like this:
this.ultraGrid1.DisplayLayout.Override.CellClickAction = CellClickAction.RowSelect;
Please let me know if you need any additional information.