Skip to content

Commit 97d9237

Browse files
committed
Improve cell hashing
1 parent c0b6331 commit 97d9237

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

LDK/resources/web/LDK/field/SimpleCombo.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,14 @@ Ext4.define('LDK.form.field.SimpleCombo', {
2525
});
2626

2727
this.callParent(arguments);
28+
29+
if (this.initialValues) {
30+
if (!Ext4.isArray(this.initialValues)) {
31+
this.initialValues = this.initialValues.split(';');
32+
}
33+
34+
this.setValue(this.initialValues);
35+
}
2836
},
2937

3038
parseStoreValues: function(){

0 commit comments

Comments
 (0)