5

任何人都知道您如何在 ExtJS 中对任何字段的子字段进行建模?例如

外部数据模型:

fields:[
   {name: 'id', type: 'int'},
   {name: 'title', type: 'string'},
   {name: 'description', type: 'string'},
   {name: 'priority', type: 'auto', fields:[
      {name: 'code', type: 'string'}
   ]},
   {name: 'createdBy', type: 'auto'},
]

然后在我的网格面板中

扩展网格面板

columns:[
    {header:'Title', dataIndex:'title', flex:1},
    {header:'Priority', dataIndex:'code'}
],

知道如何访问“优先级”下的dataIndex“代码”吗?提前致谢!

4

2 回答 2

11

感谢@sha - 这是我需要的答案:)

模型

fields:[

            {name: 'id', type: 'int'},
            {name: 'title', type: 'string'},
            {name: 'description', type: 'string'},
            {name: 'priority', type: 'auto'},
            {name: 'code', type: 'string', mapping:'priority.code'},
            {name: 'createdBy', type: 'auto'},

        ]

梁板

columns:[

             {header:'Title', dataIndex:'title', flex:1},
             {header:'Description', dataIndex:'description'},
             {header:'Priority', dataIndex:'code'}

         ],
于 2012-05-09T07:22:22.220 回答
4

尝试这个:

dataIndex: 'priority.code'
于 2012-05-08T14:53:27.803 回答