We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acabd2d commit dbbb1cfCopy full SHA for dbbb1cf
LDK/resources/web/LDK/field/SimpleCombo.js
@@ -13,6 +13,7 @@ Ext4.define('LDK.form.field.SimpleCombo', {
13
queryMode: 'local',
14
triggerAction: 'all',
15
joinReturnValue: false,
16
+ delimiter: ';',
17
18
initComponent: function(){
19
Ext4.apply(this, {
@@ -62,5 +63,15 @@ Ext4.define('LDK.form.field.SimpleCombo', {
62
63
64
getToolParameterValue : function(){
65
return this.getSubmitValue();
66
+ },
67
+
68
+ setValue: function(val) {
69
+ if (this.multiSelect && val && Ext4.isString(val)) {
70
+ val = val.split(this.delimiter);
71
+ this.callParent([val]);
72
+ }
73
+ else {
74
+ this.callParent(arguments);
75
76
}
77
});
0 commit comments