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
How to get standard Microsoft grid behavior?
posted

I have to make an UltraGrid behave like a Microsoft Access grid. Where I am stuck is:

1. How to make a cell editable as soon as the user clicks in it WITHOUT highlighting the entire row,

BUT ALSO

2. How to highlight the entire row if the user clicks on the row selector.

(The user must also be able to run the mouse down the row selectors and highlight multiple rows-but I know how to do that).

Parents
No Data
Reply
  • 469350
    Offline posted

    Hi,

    kennethknoepfli said:
    1. How to make a cell editable as soon as the user clicks in it WITHOUT highlighting the entire row,

    This is the default behavior of the grid. If it's not letting you edit a cell when you click on it once, then you must have changed some property setting in the grid that is causing this behavior. I'd look for the CellClickAction property as the most likely candidate.

    kennethknoepfli said:
    2. How to highlight the entire row if the user clicks on the row selector.

    Once again, this is the default behavior of the grid. Clicking the row selector selects the row. That's it's whole purpose in life. Are you saying that you are clicking on the row selector and it's not selecting the row? The only reason that would happen is if the row is disabled or you have disabled selection in the grid.

Children