当前位置: 代码迷 >> Web前端 >> combox 的store添取值
  详细解决方案

combox 的store添取值

热度:664   发布时间:2012-10-28 09:54:44.0
combox 的store加取值
function getDataStateCombo(){
    return new Ext.form.ComboBox({
        id: 's_dataState',
        name: 's_dataState',
        fieldLabel: '数据状态',
        typeAhead: true,
        triggerAction: 'all',//选了还可以再选
        lazyRender: true,
        mode: 'local',
        store: new Ext.data.ArrayStore({
            id: 0,
            fields: ['myId', 'displayText'],//定义格式 第一个数据库值 后一个显示在页面的值  getValue()取的真实值(例如“0”),getRawValue()取的显示值(例如“存在”)
            data: [["0", "存在"], ["1", "删除"]]
        }),
        valueField: 'myId',
        displayField: 'displayText',
        emptyText: '请选择'//显示在下拉列表那的
});
  相关解决方案