We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50ddd38 commit 60aab4eCopy full SHA for 60aab4e
LDK/resources/web/LDK/field/SimpleCombo.js
@@ -12,6 +12,7 @@ Ext4.define('LDK.form.field.SimpleCombo', {
12
typeAhead: true,
13
queryMode: 'local',
14
triggerAction: 'all',
15
+ joinReturnValue: false,
16
17
initComponent: function(){
18
Ext4.apply(this, {
@@ -48,5 +49,18 @@ Ext4.define('LDK.form.field.SimpleCombo', {
48
49
vals = Ext4.unique(vals);
50
51
return vals;
52
+ },
53
+
54
+ getSubmitValue: function(){
55
+ var val = this.callParent(arguments);
56
+ if (!this.joinReturnValue) {
57
+ return val;
58
+ }
59
60
+ return val && val.length ? val.join(this.delimiter) : null;
61
62
63
+ getToolParameterValue : function(){
64
+ return this.getSubmitValue();
65
}
66
});
0 commit comments