Hi,
I have searched the forum and saw previous posts, however, it does not seem to work for me. I would like to disable that rows can be selected and set the following:
e.Layout.Override.SelectTypeRow = SelectType.None;e.Layout.Override.SelectTypeCell = SelectType.None;
However, in Infragistics 9.1, I can still select the rows and get OnBeforeRowActivate events. What do I have to do additionally?
Regards,Reto
Hi Reto,
The basic issue here is that you are mixing up Seleted and Active. BeforeRowActivate is for when a row becomes the ActiveRow, it has nothing to do with selection.
I beleive what you want to do is stop the ActiveRow from appearing selected. Here's some information on how to do that:
FAQ:How do I turn off the ActiveRowAppearance so that the active row in the grid does not appear selected.