2

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

格式响应:

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

0 回答 0