Browse Source

Merge pull request #252604 in DEC/fineui from master to feature/x

* commit '871ba2bbb30e2b7fd962bbcaa5fde85b23409bb2':
  无JIRA singletree.combo 支持传入popup属性, maxHeight之类的
  无JIRA singletree.combo 支持传入popup属性, maxHeight之类的
research/test
superman 1 year ago
parent
commit
081beccc8d
  1. 5
      packages/fineui/src/widget/singletree/singletree.combo.js

5
packages/fineui/src/widget/singletree/singletree.combo.js

@ -33,6 +33,10 @@ export class SingleTreeCombo extends Widget {
items: [], items: [],
value: "", value: "",
allowClear: false, allowClear: false,
popup: {
maxHeight: 400,
minHeight: 240,
}
}); });
} }
@ -77,6 +81,7 @@ export class SingleTreeCombo extends Widget {
el: this.trigger, el: this.trigger,
popup: { popup: {
el: this.popup, el: this.popup,
...o.popup
}, },
}); });

Loading…
Cancel
Save