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
620
ctrl+spacebar makes first cell of selected row white.
posted

We have a pair of gridd that are supposed to be used in drag and drop mode only. No editing is supposed to be possible.

I have set the grids up with this command:

lay.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.

 

 

SelectType

.SingleAutoDrag;

(sorry, that's supposed to be one line. The forum editor broke it up into 3.)

However, if the user presses ctrl+spacebar, the first cell of the selected row goes white and gets the focus border, misleading the user into thinking something can be edited.

How can I suppress this?

Parents
  • 469350
    Suggested Answer
    Offline posted

    Ctrl+Spacebar selects the current object. My guess is that you are selecting the active cell and not the row. So you probably want to set SelectTypeCell to None, also.

     

     

Reply Children