diff --git a/bi/widget.js b/bi/widget.js index 2c97d202d..ee394d893 100644 --- a/bi/widget.js +++ b/bi/widget.js @@ -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); diff --git a/docs/widget.js b/docs/widget.js index 2c97d202d..ee394d893 100644 --- a/docs/widget.js +++ b/docs/widget.js @@ -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); diff --git a/src/widget/pagetable/pagetable.js b/src/widget/pagetable/pagetable.js index 87ea99a45..a609728f5 100644 --- a/src/widget/pagetable/pagetable.js +++ b/src/widget/pagetable/pagetable.js @@ -243,6 +243,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(); }, diff --git a/src/widget/sequencetable/sequencetable.js b/src/widget/sequencetable/sequencetable.js index bfb4bc463..52adfdd93 100644 --- a/src/widget/sequencetable/sequencetable.js +++ b/src/widget/sequencetable/sequencetable.js @@ -195,6 +195,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);