This is a migrated thread and some comments may be shown as answers.

Maximum call stack size exceeded error with angularjs and mvc

1 Answer 405 Views
TreeList
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
David
Top achievements
Rank 1
David asked on 15 Mar 2016, 11:46 PM

Hello,

I use last version of kendoui and i have problem with TreeList component (asp-net.mvc on server and angularjs on client)

javascript

$scope.treelistOptions = {
     dataSource: {

     

       transport: {
         read: {
           type:'GET',
           url: 'category-tree',
         }
       },
       schema: {
         model: {
           Id: "categoryId",
           ParentId:"parentCategoryId",
           fields: {
             categoryId: { field: "categoryId", type: "number", nullable: false },
             parentCategoryId: { field: "parentCategoryId", nullable: true },
             name: { field: "name" },}
         }
       }
     },
     columns: [
      { field: "Name" },
     ],
   };

 

1 Answer, 1 is accepted

Sort by
0
Nikolay Rusev
Telerik team
answered on 18 Mar 2016, 07:49 AM

Hello David,

 

This post is duplicate with the other one you've opened. Thus I'm closing it.

 

Please avoid duplication of posts.

 

Regards,
Nikolay Rusev
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
Tags
TreeList
Asked by
David
Top achievements
Rank 1
Answers by
Nikolay Rusev
Telerik team
Share this question
or