Hello guys!
I am trying to put a delete button on each row of a grid and add a click event on each button.
My problem is that after i delete one row the rendered function is called before the cells are rendered so i cannot update the click event on the buttons (the grid redraws all the rows).
Is there another callback function that gets called after the grid is refreshed after a deleterow?
Another problem that i see is that the cells are refreshed two times after a row is deleted.
Here is the test i made:
http://jsfiddle.net/j8JUh/24/
Thank you!