2

How can I build a dynamic JSON model for ExtJs TreeGrid Treecolumn component in c#

format response:

 root: {
    text: 'Root',
    expanded: true,
    children: [
        {
            text: 'Child 1',
            leaf: true
        },
        {
            text: 'Child 2',
            leaf: true
        },
        {
            text: 'Child 3',
            expanded: true,
            children: [
                {
                    text: 'Grandchild',
                    leaf: true
                }
            ]
        }
    ]
}
Artemix
  • 2,113
  • 2
  • 23
  • 34
Mohammad Zargarani
  • 1,422
  • 2
  • 12
  • 19

0 Answers0