2

C#でExtJs TreeGridTreecolumnコンポーネントの動的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