|
|
|
@ -13053,6 +13053,18 @@ BI.PageTable = BI.inherit(BI.Widget, {
|
|
|
|
|
return this.table.getVerticalScroll(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setLeftHorizontalScroll: function (scrollLeft) { |
|
|
|
|
this.table.setLeftHorizontalScroll(scrollLeft); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setRightHorizontalScroll: function (scrollLeft) { |
|
|
|
|
this.table.setRightHorizontalScroll(scrollLeft); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setVerticalScroll: function (scrollTop) { |
|
|
|
|
this.table.setVerticalScroll(scrollTop); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
restore: function () { |
|
|
|
|
this.table.restore(); |
|
|
|
|
}, |
|
|
|
@ -16176,6 +16188,14 @@ BI.SequenceTable = BI.inherit(BI.Widget, {
|
|
|
|
|
return this.table.hasRightHorizontalScroll(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setLeftHorizontalScroll: function (scrollLeft) { |
|
|
|
|
this.table.setLeftHorizontalScroll(scrollLeft); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setRightHorizontalScroll: function (scrollLeft) { |
|
|
|
|
this.table.setRightHorizontalScroll(scrollLeft); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setVerticalScroll: function (scrollTop) { |
|
|
|
|
this.table.setVerticalScroll(scrollTop); |
|
|
|
|
this.sequence.setVerticalScroll(scrollTop); |
|
|
|
|