Hello Friends,
Here is the problem I am facing. I want to select multiple cells in Wingrid.
When I click on a particular cell, the entire row gets highlighted.
I just want to select the cells I click on.
Please help.
Regards,
Sid.
I think you're confusing selection and activation. Anyway, to select only the cell you can write:
To select multiple cells with CTRL write:
ultraGrid1.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.Extended;
You can see all options in action if you open the designer dialog and go to "Feature Picker".
Hi..I tried both the above options but still the whole row gets highlighted when I click on a cell.I dont want the ENTIRE row to get higlighted.
Please Help,
Regards,Sid.
The highlighting is because the row is activated. Try changing the ActiveRowAppearance.
This might help:
FAQ:How do I turn off the ActiveRowAppearance so that the active row in the grid does not appear selected.
Hi Mike, Thank you very much. The link provided exactly whatI needed. Thanks again.Regards,Sid.
Thanks a lot, Mike and Amiram.