导航

EXT combo 回填

Posted on 2014-03-18 17:09  小强有毒  阅读(238)  评论(0)    收藏  举报
store: new Ext.data.Store({
     fields: ['name','number'],
     autoLoad:true,//定义store自动加载,或者在外部定义store在combo显示之前加载
     proxy : {
          type : 'ajax',
          actionMethods : 'post',
          url : '${ctx}/admin/getLineList.do',
          reader:{
                type:'json',
                root:'list',
            totalProperty: 'total'  
          }  
      }
})