Browse Source

无JIRA fix: button_group选中问题

es6
zsmj 1 year ago
parent
commit
4554674106
  1. 6
      packages/fineui/src/base/combination/group.button.js

6
packages/fineui/src/base/combination/group.button.js

@ -42,7 +42,7 @@ export class ButtonGroup extends Widget {
static xtype = "bi.button_group";
static EVENT_CHANGE = "EVENT_CHANGE";
static CHOOSE_TYPE_SINGLE = Selection.Single;
static CHOOSE_TYPE_MULTI = Selection.Multi;
static CHOOSE_TYPE_ALL = Selection.All;
@ -86,8 +86,8 @@ export class ButtonGroup extends Widget {
this.setValue(newValue);
})
: value;
if (isKey(value) || isNotEmptyArray(value)) {
this.setValue(value);
if (isKey(this.options.value) || isNotEmptyArray(this.options.value)) {
this.setValue(this.options.value);
}
}

Loading…
Cancel
Save