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', {
data : me.data
});
if (me.initialConfig.editable === undefined) {
me.editable = false;
}
Ext.apply(me, {
displayField: 'value',
valueField: 'key',
queryMode: 'local',
editable: false
queryMode: 'local'
});
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