Rupesh Kahane

Rupesh Kahane

  • 95
  • 19.1k
  • 4.1m

Maximum call stack size exceeded Kendo Treelist MVC

Mar 2 2017 3:50 AM
I have Kendo TreeList in which I am adding new Nodes. After saving records I am going to edit any record from Tree List, after completion of this step I am again saving that record into a database. After saving I would like to reload that TreeList.
While reloading I am getting bellow exception. Give me some solution.
 
  1. Uncaught RangeError: Maximum call stack size exceeded  
  2. at init._defaultParentId (kendo.all.min.js:73)  
I have tried by installing new lasted Kendo MVC into my project.
Also I have clear old tree list & refresh Tree List as well.
Bellow is my code to refresh the tree list in javascript.
  1. function refreshTree(primaryCode) {  
  2.         $('#divTree').load('/ControllerName/ActionName?Id=' + primaryCode);  
  3.     }  
Thanks in advance 

Answers (2)