Browse Source

Merge pull request #36 in ~GUY/fineui from ~WINDY/fineui:master to master

* commit '51300929449aeaf9ada78d6192a16851ee6c6874':
  为bubblecombo加个方法
es6
windy 7 years ago
parent
commit
cc4eec88b3
  1. 4
      bi/case.js
  2. 4
      docs/case.js
  3. 4
      src/case/combo/bubblecombo/combo.bubble.js

4
bi/case.js

@ -3592,6 +3592,10 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
showView: function () {
this.combo && this.combo.showView();
},
hasView: function () {
return BI.isNotNull(this.combo.getView());
}
});

4
docs/case.js

@ -3592,6 +3592,10 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
showView: function () {
this.combo && this.combo.showView();
},
hasView: function () {
return BI.isNotNull(this.combo.getView());
}
});

4
src/case/combo/bubblecombo/combo.bubble.js

@ -193,6 +193,10 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
showView: function () {
this.combo && this.combo.showView();
},
hasView: function () {
return BI.isNotNull(this.combo.getView());
}
});

Loading…
Cancel
Save