Browse Source

Merge pull request #511 in VISUAL/fineui from ~WINDY/fineui:master to master

* commit 'e6e94c247e58ceafd95ba2c44701b791f57caf94':
  update
  BI-24694 && BI-24603
es6
Young 6 years ago
parent
commit
cee720b3ae
  1. 36
      dist/_fineui.min.js
  2. 10
      dist/bundle.js
  3. 36
      dist/bundle.min.js
  4. 9
      dist/case.js
  5. 10
      dist/fineui.js
  6. 36
      dist/fineui.min.js
  7. 1
      dist/widget.js
  8. 9
      src/case/segment/segment.js
  9. 1
      src/widget/downlist/popup.downlist.js

36
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/bundle.js vendored

@ -84437,6 +84437,15 @@ BI.Segment = BI.inherit(BI.Widget, {
});
},
_setEnable: function (enable) {
BI.Segment.superclass._setEnable.apply(this, arguments);
if (enable === true) {
this.element.removeClass("base-disabled disabled");
} else if (enable === false) {
this.element.addClass("base-disabled disabled");
}
},
setValue: function (v) {
this.buttonGroup.setValue(v);
},
@ -90423,6 +90432,7 @@ BI.DownListPopup = BI.inherit(BI.Pane, {
item.el.height = self.constants.height;
item.el.iconCls2 = self.constants.nextIcon;
item.popup = {
lgap: 1,
el: {
type: "bi.button_tree",
chooseType: 0,

36
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/case.js vendored

@ -11877,6 +11877,15 @@ BI.Segment = BI.inherit(BI.Widget, {
});
},
_setEnable: function (enable) {
BI.Segment.superclass._setEnable.apply(this, arguments);
if (enable === true) {
this.element.removeClass("base-disabled disabled");
} else if (enable === false) {
this.element.addClass("base-disabled disabled");
}
},
setValue: function (v) {
this.buttonGroup.setValue(v);
},

10
dist/fineui.js vendored

@ -84686,6 +84686,15 @@ BI.Segment = BI.inherit(BI.Widget, {
});
},
_setEnable: function (enable) {
BI.Segment.superclass._setEnable.apply(this, arguments);
if (enable === true) {
this.element.removeClass("base-disabled disabled");
} else if (enable === false) {
this.element.addClass("base-disabled disabled");
}
},
setValue: function (v) {
this.buttonGroup.setValue(v);
},
@ -90672,6 +90681,7 @@ BI.DownListPopup = BI.inherit(BI.Pane, {
item.el.height = self.constants.height;
item.el.iconCls2 = self.constants.nextIcon;
item.popup = {
lgap: 1,
el: {
type: "bi.button_tree",
chooseType: 0,

36
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

1
dist/widget.js vendored

@ -2665,6 +2665,7 @@ BI.DownListPopup = BI.inherit(BI.Pane, {
item.el.height = self.constants.height;
item.el.iconCls2 = self.constants.nextIcon;
item.popup = {
lgap: 1,
el: {
type: "bi.button_tree",
chooseType: 0,

9
src/case/segment/segment.js

@ -39,6 +39,15 @@ BI.Segment = BI.inherit(BI.Widget, {
});
},
_setEnable: function (enable) {
BI.Segment.superclass._setEnable.apply(this, arguments);
if (enable === true) {
this.element.removeClass("base-disabled disabled");
} else if (enable === false) {
this.element.addClass("base-disabled disabled");
}
},
setValue: function (v) {
this.buttonGroup.setValue(v);
},

1
src/widget/downlist/popup.downlist.js

@ -98,6 +98,7 @@ BI.DownListPopup = BI.inherit(BI.Pane, {
item.el.height = self.constants.height;
item.el.iconCls2 = self.constants.nextIcon;
item.popup = {
lgap: 1,
el: {
type: "bi.button_tree",
chooseType: 0,

Loading…
Cancel
Save