We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89483e8 commit 2f7add3Copy full SHA for 2f7add3
assets/components/modai/js/mgr/autosummary.js
@@ -6,7 +6,7 @@ Ext.onReady(function() {
6
const cachedItem = this._cache[key];
7
8
cachedItem.els.forEach(({wrapper, field}) => {
9
- const prevValue = field.value;
+ const prevValue = field.getValue();
10
field.setValue(value);
11
field.fireEvent('change', field, value, prevValue);
12
@@ -35,6 +35,11 @@ Ext.onReady(function() {
35
}
36
37
this._cache[key].els.push({ field, wrapper });
38
+ const currentValue = field.getValue();
39
+ if (currentValue) {
40
+ this._cache[key].values = [currentValue];
41
+ this._cache[key].visible = 0;
42
+ }
43
},
44
store (key, value) {
45
0 commit comments