Hi there,
I'm updating the grid row in javascript calling editRowEnding event with below piece of code, it works fine for first row but don't allow me to edit any other row in the grid. Please note that I don't want dataBind here and using latest release '12.2.20122.2176'
function editRowEnding(evt, ui) { if (ui.update) { var _templateID = ui.rowID; var _item = ui.values.CertItem; var _category = ui.values.Category var _values = ui.values.ItemValue; var cols = { TemplateItemID: _templateID, CertItem: _item, Category: _category, ItemValue: _values }; $("#GridTable").igGridUpdating("updateRow", _templateID, cols); $("#GridTable").igGrid("commit"); $("#GridTable").igGrid("saveChanges"); }}
It always keep isEditing = true for:
var isEditing = $("#GridTable").igGridUpdating("isEditing");
Even try to endEdit with:
$("#GridTable").igGridUpdating("endEdit",true,evt);
But no luck!! Please advise any help.
Regards,
Jasdeep
Hey Jasdeep,
I have logged an issue to Development, it appears that this is a bug. Thank you,
Angel
Hi Angel,
Thanks for your reply. Have you had any update from development on this?