任何人都知道如何模擬ExtJS中任何字段的子字段?例如帶子字段的Extjs模型字段
Ext.data.Model:
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'},
]
然後在我的網格面板
Ext.grid.Panel
columns:[
{header:'Title', dataIndex:'title', flex:1},
{header:'Priority', dataIndex:'code'}
],
任何想法我如何訪問dataIndex '代碼'在'優先'下?提前致謝!
在這裏,你可以回答看到我的例子到一個類似的問題:http://stackoverflow.co米/一/ 12694550/1496088 –