Hello,
I have a problem with "Updating". When I click on a cell for updating I cannot see what was written in the cell before and the "Uncaught RangeError: Maximum call stack size exceeded" error occurs. Could you help me please?
Here is HTML page with all .js libraries I use. I simplified it as much as possible.
https://dl.dropboxusercontent.com/u/556367/Problem.zip
Thank you,
Martin
Hello Martin,
The problem is that you referenced the igEditors twice. Once in infragistics.ui.editors.js and then in infragistics.lob.js.
You should remove the reference to infragistics.ui.editors.js and the problem will disappear.
Best regards,Martin PavlovInfragistics, Inc.
Thank you very much, but I still cannot see what is written in a cell. When I click on a cell the textbox is just empty.
You also have to declare a data type for your primary key column. Here is the code for the column configuaration:
var columns = [{ key: "amountOrdered", headerText: "Amount", dataType: "number", width: "100", format: "0.00" }, { key: "cureName", headerText: "Name", dataType: "string" }, { key: "idOrderItemIncoming", headerText: "ID", width: "100", dataType: "number" }];
Thanks again Martin!
Best regards,
Martin Zagora