任何人都知道您如何在 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“代码”吗?提前致谢!