Extjs combox 获取数据

// 创建combox

new Ext.form.ComboBox({
    id : 'sex', // 控件ID
    store : store, // 数据源
   valueField : 'value',
    displayField : 'text',
    fieldLabel : '性别',
    emptyText : '请选择...',
    allowBlank : false,
    forceSelection : true, // 选中内容必须为下拉列表的子项
   editable : false, // 选择输入框可编辑
   typeAhead : true, // 输入的时候自动匹配待选项目
});

 想要获取选中的文本值,只需要使用Ext.getCmp('sex').getValue();即可,但实际开发过程中,我们用到的是下拉框的value,这时候使用的是Ext.getCmp('sex').getRawValue();

相关推荐