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.
- Uncaught RangeError: Maximum call stack size exceeded
- 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.
- function refreshTree(primaryCode) {
- $('#divTree').load('/ControllerName/ActionName?Id=' + primaryCode);
- }
Thanks in advance