Getting a "cannot call methods on igEditorFilter prior to initialization: attempted to call method 'remove'" error when trying to update a hidden column cell.
<table id="grid"></table>
$("#grid").igGrid({
primaryKey: "HiddenID", autoCommit: true, columns: [{ headerText: "HiddenID", key: "HiddenID", dataType: "number", hidden: true }, { headerText: "Date", key: "Date", dataType: "string" }, { headerText: "Comments", key: "Comments", dataType: "string" }, { headerText: "Hidden Column", key: "HiddenCol", dataType: "string", hidden: true } ], features: [{ name: "Updating", editMode: "row", editRowEnding: function (evt, ui) { if (ui.rowID > 0) $("#grid").igGridUpdating("setCellValue", ui.rowID, "HiddenCol", "testing"); } }] });
Hi, dtwilliams
Does using editRowEnded instead of editRowEnding event work for you? I'm not reproducing the issue using editRowEnding.
Thanks, Deyan
Hello dtwilliams,
I am just following up and see if you need further assistance.
If you have any questions, please do not hesitate to let us know.