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
40
Event CellEnded does't work properly
posted

Hi,

I'm trying to use the event editCellEnded when change to other cell in the row that i'm editing, catch the event and do some stuff. But the event only raise when finish or cancel the editing of the row.

Any idea?

To inform i tried to subcribe with:

(document).delegate("#TablaParametrizacion", "iggridupdatingeditcellended", function (evt, ui) {
/*Do stuff*/
});

$("#TablaParametrizacion").live("iggridupdatingeditcellended", function (event, ui) {
/*Do stuff*/
});

The "#TablaParametrizacion" is the id of the "div" which contains the igrid table.