1

我正在使用 Google Charts 对表格进行分页,并希望在重绘之前保存当前页面,以便稍后将其设置为 startPage。

如何访问表格的当前页面?

4

2 回答 2

0

如果这对任何人有帮助,

我最终将查询语言与页面事件的自定义函数结合使用。

该查询使我能够设置表的偏移量,并且工作正常。

这是对查询语言的参考:

https://developers.google.com/chart/interactive/docs/querylanguage#Offset

https://developers.google.com/chart/interactive/docs/examples#tablequerywrapper

这就是您在 Google Charts 事件上运行自定义函数的方式:

https://developers.google.com/chart/interactive/docs/gallery/table#Configuration_Options

于 2012-12-18T08:22:19.153 回答
0

我知道这是旧的,但我想出了如何做你想要的:

var currentPage = 0;  //at the beginning of your code, like a chartWrapper

//in your ready event:
google.visualization.events.addListener(chart, 'page', function(e) { returnTablePage(e) });

//as a separate function:
function returnTablePage(e) { currentPage = e.page; }

我把它放在一个单独的函数中,因为我需要做几件事......

于 2019-06-04T05:30:37.040 回答