@ -134,6 +134,9 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
type: "bi.left",
height: o.height,
scrollable: false,
ref: function (_ref) {
self.rowCountObject = _ref;
},
items: [{
type: "bi.label",
@ -209,6 +212,10 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
this.pager.setVisible(b);
setRowCountVisible: function (b) {
this.rowCountObject.setVisible(b);
populate: function () {
this.pager.populate();
this.setPagerVisible(this.options.pages > 1);
@ -22,5 +22,7 @@ export declare class AllCountPager extends Widget {
setPagerVisible(v: boolean): void;
setRowCountVisible(v: boolean): void;
populate(): void;
}