|
|
|
@ -7146,6 +7146,7 @@ BI.SignInitialEditor = BI.inherit(BI.Widget, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setState: function (v) { |
|
|
|
|
var o = this.options; |
|
|
|
|
this._showHint(); |
|
|
|
|
v = (BI.isEmpty(v) || v == o.text) ? o.text : v + "(" + o.text + ")"; |
|
|
|
|
this.text.setValue(v); |
|
|
|
@ -8790,6 +8791,11 @@ BI.SelectList = BI.inherit(BI.Widget, {
|
|
|
|
|
this._checkAllSelected(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_setEnable: function () { |
|
|
|
|
BI.SelectList.superclass._setEnable.apply(this, arguments); |
|
|
|
|
this.toolbar.setEnable(arguments); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
resetHeight: function (h) { |
|
|
|
|
var toolHeight = ( this.toolbar.element.outerHeight() || 25) * ( this.toolbar.isVisible() ? 1 : 0); |
|
|
|
|
this.list.resetHeight ? this.list.resetHeight(h - toolHeight) : |
|
|
|
|