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
60
endedit on iggridupdatingeditcellended doesn't work
posted

Hi.

When I finish to editcell, the cell continues marked.

I try this:

$("#grid").on("iggridupdatingeditcellended", function (event, ui) {

//do something

endGrid();

}

function endGrid(){

var esc = $.Event("keydown", { keyCode: 27 });
$("#grid").trigger(esc);

}

But doesn't work, I included an alert and show the alert, I can see table deactivated the same way when you use esc but immediately comes to cell activate.

What can I do?

Thanks