在extjs中怎么用下拉列表实现数据库中0,1的传值

new Ext.form.ComboBox({
        fieldLabel: '共享',
//         name: 'productForm.supply',
                   hiddenName : 'cmt_tbdocument_share',
        anchor:'60%',
        store:new Ext.data.SimpleStore({
        fields:['supName','supValue'],
        data:[['是','1'],['否','0']]
        }),
        displayField:'supName',//显示值
        valueField:'supValue',//按说是应该存到数据库中的值,但是存到数据库中的值一直是上面的显示值
        typeAhead: true,
        mode: 'local',
        forceSelection:true,
        triggerAction: 'all', // 触发加载所有数据
        value:'0',
        selectOnFocus:true
//         listeners:{
//         select:function(index){
//         alert(index.getValue());
//         }
//           }
    })

你可能感兴趣的:(ext)