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'}
],
'priority'の下のdataIndex'code'にアクセスする方法はありますか?前もって感謝します!