Hello,
I am getting "Uncaught RangeError: Maximum call stack size exceeded" jquery-1.9.1.js when igGrid Row is dbclicked for edit. Please help. Cannot upload sample project; when I upload and hit save button I get "Page not found"
Thanks
Pratibha
I sent sample project to support@infragistics.com. Please help. subject line is igGrid edit does not work ;"Uncaught RangeError: Maximum call stack size exceeded".
Hi,
Enclosed please find a project zip file. "SETTINGS" tab igGrid edit does not work. Please help.
Hello Pratibha,
Apologizes for sending you an internal version of the sample. Could you please test the new attachment and inform me if you still encounter any issues?
Looking forwards to hearing from you.
Thank you for the reply. Unfortunately this does not work. When I edit row of SETTINGS tab grid, I get javascript errors. I am attaching screen shot. Also igHierarchical grid of DETAILS tab does not show children e.g. Orders. Please help.
Regards
Hello Pratihba,
I have tested the scenario further and the reported issue persists while an update operation is performed. I brought up the matter to our engineering stuff. I will get back to you with more details as soon as I get their response.
Hello Prathiba,
Thank you for your patience.
After reviewing your sample further, it seems that the issue in question was caused due to the fact that both the combined IgniteUI scripts as well as the igLoader script have been loaded and used. This is likely the cause of the issue in this case as the same resources being fetched multiple times may lead to conflicts.
To resolve the issue, I would suggest removing the bundle includes for the combined scripts in BundleConfig.cs, as such:
bundles.Add( new ScriptBundle("~/scripts/vendor") .Include("~/Scripts/jquery-{version}.js") .Include("~/Scripts/jquery-ui-{version}.js") .Include("~/Scripts/knockout-{version}.debug.js") .Include("~/Scripts/sammy-{version}.js") .Include("~/Scripts/toastr.js") .Include("~/Scripts/Q.js") //.Include("~/Scripts/Infragistics/js/infragistics.core.js") //.Include("~/Scripts/Infragistics/js/infragistics.lob.js") //.Include("~/Scripts/Infragistics/js/infragistics.dv.js") .Include("~/Scripts/Infragistics/js/infragistics.loader.js") .Include("~/Scripts/breeze.debug.js") .Include("~/Scripts/bootstrap.js") .Include("~/Scripts/moment.js") );
This seems to resolve the recursion issue as well as the hierarchical grid loading issues, though the row editing template of the igGrid may need modifications based on your
specific datasource. Attached is the updated version of your sample for your reference.
Hope this helps. Please feel free to contact me if you have any questions.
Please feel free to contact me if you have any further questions regarding this matter.