|
|
@ -67123,16 +67123,19 @@ BI.GridTable = BI.inherit(BI.Widget, { |
|
|
|
setVerticalScroll: function (scrollTop) { |
|
|
|
setVerticalScroll: function (scrollTop) { |
|
|
|
this.bottomLeftGrid.setScrollTop(scrollTop); |
|
|
|
this.bottomLeftGrid.setScrollTop(scrollTop); |
|
|
|
this.bottomRightGrid.setScrollTop(scrollTop); |
|
|
|
this.bottomRightGrid.setScrollTop(scrollTop); |
|
|
|
|
|
|
|
this._populateScrollbar(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
setLeftHorizontalScroll: function (scrollLeft) { |
|
|
|
setLeftHorizontalScroll: function (scrollLeft) { |
|
|
|
this.topLeftGrid.setScrollLeft(scrollLeft); |
|
|
|
this.topLeftGrid.setScrollLeft(scrollLeft); |
|
|
|
this.bottomLeftGrid.setScrollLeft(scrollLeft); |
|
|
|
this.bottomLeftGrid.setScrollLeft(scrollLeft); |
|
|
|
|
|
|
|
this._populateScrollbar(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
setRightHorizontalScroll: function (scrollLeft) { |
|
|
|
setRightHorizontalScroll: function (scrollLeft) { |
|
|
|
this.topRightGrid.setScrollLeft(scrollLeft); |
|
|
|
this.topRightGrid.setScrollLeft(scrollLeft); |
|
|
|
this.bottomRightGrid.setScrollLeft(scrollLeft); |
|
|
|
this.bottomRightGrid.setScrollLeft(scrollLeft); |
|
|
|
|
|
|
|
this._populateScrollbar(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
getVerticalScroll: function () { |
|
|
|
getVerticalScroll: function () { |
|
|
@ -106745,7 +106748,7 @@ BI.SingleSlider = BI.inherit(BI.Widget, { |
|
|
|
if (!isNaN(this.min) && !isNaN(this.max)) { |
|
|
|
if (!isNaN(this.min) && !isNaN(this.max)) { |
|
|
|
this._setVisible(true); |
|
|
|
this._setVisible(true); |
|
|
|
this.enable = true; |
|
|
|
this.enable = true; |
|
|
|
this.label.setErrorText(BI.i18nText("BI-Please_Enter") + this.min + "-" + this.max + BI.i18nText("BI-Basic_De") + BI.i18nText("BI-Basic_Number")); |
|
|
|
this.label.setErrorText(BI.i18nText("BI-Basic_Please_Enter_Number_Between", this.min, this.max)); |
|
|
|
if (BI.isNumeric(this.value) || BI.isNotEmptyString(this.value)) { |
|
|
|
if (BI.isNumeric(this.value) || BI.isNotEmptyString(this.value)) { |
|
|
|
this.label.setValue(this.value); |
|
|
|
this.label.setValue(this.value); |
|
|
|
this._setAllPosition(this._getPercentByValue(this.value)); |
|
|
|
this._setAllPosition(this._getPercentByValue(this.value)); |
|
|
|