在表单的报表块(report4)设置了分页,并设置了报表块的初始化后事件。
var form = this.options.form;
setInterval(function() {
form.getWidgetByName('report4').gotoNextPage();
}, 2000);
该事件能够正常自动往下翻页,但是我想获得报表块的当前页和总页数,使用如下方法无法实现。
this.options.form.getWidgetByName('report4').currentPageIndex;
this.options.form.getWidgetByName('report4').reportTotalPage;
请高人指教。