ExtJS4去除下拉框的光标(remove the cursor of combo) ExtJS光标下拉框
程序员文章站
2024-02-18 12:57:58
...
{
id : 'brandId',
name : 'brandId',
xtype : 'combo',
fieldLabel : '手机品牌',
labelWidth : 60,
store : brandStore,
queryMode : 'local',
displayField : 'name',
valueField : 'id',
editable : false,
emptyText : '请选择手机品牌',
layout : 'column',
listeners : {
//令下拉框在不可编辑状态下的光标消失
render: function(obj) {
this.inputEl.addListener('focus', function(event, htmlElement, options) {
htmlElement.blur();
});
}
}
}