c#中TreeGrid Treecolumn组件的JSON模型

时间:2012-09-15 13:49:43

标签: c# json extjs treegrid

如何构建动态JSON模型 在C#中的ExtJs TreeGrid Treecolumn组件

格式回复:

 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
                }
            ]
        }
    ]
}

0 个答案:

没有答案