모델입니다
Ext.regModel('commemModel ', {
fields : [ 'name', 'id' ]
})
스토어를 정의하고 id가 s1인 컨테이너의 기본값을 첫 번째로 설정합니다. Quarter
var gjcx1 = new Ext.data. Store({
autoLoad:true ,
모델 : commemModel,
proxy : {
type : 'ajax',
url : '../store/cxjd.json'
},
리스너 :{
load:function(){
Ext.getCmp('s1').setValue('q1')
}
}
})
아래 cxjd.json이 제공됩니다.
[
{name:'First Quarter',id:'q1'},
{name:'Second Quarter',id:'q2'},
{이름:'3분기' ,id:'q3'},
{이름:'Q4',id:'q4'}
]