Hi all,
I have a problem with Editing Grid. I have a snippet to update cell #3(My Progress) when editing cell #1(LO/Completed) or cell #2(Handbook/ Completed) in same row. I use "igGridUpdating" but in this case, it cause an error in Console "Uncaught Error: cannot call methods on igEditorFilter prior to initialization; attempted to call method 'remove'" and after, cannot editing anything.
I attached the source code, you can see in my-progress-tracker.js file.
$(self.gridId).on("iggridupdatingeditcellending", function (evt, ui) { if (!ui.update) return false;
var brand = $(ui.editor).closest('table');//get table-child - table[data-childgrid="true"] var rowIndex = ui.rowID;
var loStatus = $(brand).igGrid("getCellValue", rowIndex, 'LOStatus'); var hbStatus = $(brand).igGrid("getCellValue", rowIndex, 'HandbookStatus'); if (loStatus && hbStatus) { $(brand).igGridUpdating("updateRow", rowIndex, { MyProgress: 'Good job' }); } else { $(brand).igGridUpdating("updateRow", rowIndex, { MyProgress: 'Remaining' }); } return true; });
Can you help me? I'm looking forward a solution :|
Thanks.
I am getting the exact same error in 2017.
cannot call methods on igEditorFilter prior to initialization; attempted to call method 'remove'
getting this error wtij jquery 2.2 as well
Is it fixed?
I'm getting this issue as well using jquery-ui.1.11.0.
I tried using jquery-ui-1.8.24 but that broke other parts of my page (my datepicker column)
Is there any plan to fix this?
Hello Ngan,
That's strange. I didn't expect that.
Can you reproduce the problem when using jQuery UI 1.8.24?
Thanks in advance,
Martin PavlovInfragistics, Inc.