一聚教程网:一个值得你收藏的教程网站

热门教程

ExtJs4 ComboBox异步加载数据例子

时间:2022-06-25 18:28:58 编辑:袖梨 来源:一聚教程网

 代码如下 复制代码

var roles = Ext.create('Ext.data.Store', {
    autoLoad: true,
    fields: ['roleid','name'],
    proxy: {
        type: 'jsonp',
        url : '/?s=admin&m=Role&a=getList',
        reader: {
            type: 'json',
            root: 'list'
        }
    }
});

var userRoleCombo = Ext.create('Ext.form.ComboBox', {
    fieldLabel: '用户组',
    afterLabelTextTpl: required,
    store: roles,
    valueField: 'roleid',
    name: 'roleid',
    displayField: 'name',
    allowBlank: false,
    emptyText: '请选择...'
});

热门栏目