Commit 2bdcee9c authored by Dietmar Maurer's avatar Dietmar Maurer

KVComboBox: fix editable config

parent 22d2efca
...@@ -29,11 +29,14 @@ Ext.define('PVE.form.KVComboBox', { ...@@ -29,11 +29,14 @@ Ext.define('PVE.form.KVComboBox', {
data : me.data data : me.data
}); });
if (me.initialConfig.editable === undefined) {
me.editable = false;
}
Ext.apply(me, { Ext.apply(me, {
displayField: 'value', displayField: 'value',
valueField: 'key', valueField: 'key',
queryMode: 'local', queryMode: 'local'
editable: false
}); });
me.callParent(); me.callParent();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment