extjs Combox 调用数据
Posted jzssuanfa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了extjs Combox 调用数据相关的知识,希望对你有一定的参考价值。
1方法一 从 json获取
var typeStore = new Ext.data.Store({ proxy : new Ext.data.HttpProxy({url : ctx + ‘/cms/faqTypeListCombox.do‘}), reader : new Ext.data.JsonReader({}, [ ‘value‘, ‘name‘ ]) // 显示的字段名,与server端返回的json中字段一致 }); new Ext.Panel({ columnWidth : .2, layout : ‘form‘, border : false, labelWidth : 58, labelAlign : ‘right‘, items : [ { xtype : ‘combo‘, fieldLabel : ‘所属分类‘, hiddenName : ‘typeId‘, store : typeStore, emptyText : ‘请选所属分类‘, triggerAction : ‘all‘, valueField : ‘value‘, displayField : ‘name‘, readonly : true, allowBlank : true, editable : false, // anchor:‘20%‘ width : 130 } ] })
以上是关于extjs Combox 调用数据的主要内容,如果未能解决你的问题,请参考以下文章