Hello everyone,
I am having trouble trying to move a row from one grid to another based on a selection from a combo box. What it is supposed to do is if you click selection 1, the whole row will move to grid 1, if selection 2 then it moves to grid 2. I can’t seem to get the event handler or event to attach to the grid.
Thanks.
If you mean combon in the grid you can use
onCellChange or onEditCell event
first fires each time when cell changed ( it provides position and value of cell )
second fires for different stages during edit process, the stage 2 is the end of edit operation - exact moment which you need.
To be safe, it will be better to call row moving command with 1ms timeout to be sure that edit operation is fully finished