Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1020
Selecting multiple cells in UltraGrid.
posted

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.

Parents
  • 17259
    Offline posted

    I think you're confusing selection and activation. Anyway, to select only the cell you can write:

    ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.CellSelect;

    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".

Reply Children