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?
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,DimiDeveloper Support EngineerInfragistics Inc
Be sure to use the Text property of the cell to determine the new value. The Value property reflects the value of the field in the underlaying data source. It does not get updated until the user leaves the cell.
Thanks. I was trying all the different events using the 'value' property and it was always the original value.