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
1187
Which event fires when a cell value changed
posted

I have a grid with a checkbox that i need to handle an event immediatly when the user clicks on the cell and changes it's value.  On another a grid I have a dropdownlist cell that I need to handle immediatly after the cell has changed value.  So far everything i have found for events, the event only fires when focus has moved away from the cell.  How can I capture a 'cell changed' event when the cell still has focus?

Parents
No Data
Reply
  • 12773
    Suggested Answer
    posted

    Hello,

    You need to catch the event CellChange on the grid, this event is fired after every single change in the cell , and the cell still has the focus. The event is fired for cases like inserted character, checkbox CheckStateChanged, dropDown item changed.

    I hope this helps.

    best regards,
    Dimi
    Developer Support Engineer
    Infragistics Inc

Children