Extjs combobox设置为不可输入

// 设置不可输入:editable:false
var categoryCombo = new Ext.form.ComboBox({
    id:'categoryCombo',
    width:140,
    forceSelection : true,   
    selectOnFocus: true,   
    triggerAction: 'all',   
    mode: 'local',   
    editable:false,
    store: categoryDatastore,   
    allowBlank: true,   
    valueField : 'cid',   
    displayField : 'cname',
    value:'---请选择---'
});


你可能感兴趣的:(Extjs combobox设置为不可输入)