table 内的鼠标滚动和条形滚动是否有制表符可用的滚动回调?

does tabulator have scroll callback available for mouse scroll and bar scroll within the table?

在制表符 table 中使用鼠标滚轮或滚动条滚动 table 时,似乎找不到滚动回调。是我没找到还是tabulator本身没有提供?

正如dota2pro所说,Tabulator目前还没有这个功能。我只能找到 post scrollToRow()scrollToColumn() 成功滚动到所需位置的回调。

对于 Tabulator 版本 4.5,正确的选择器应该是 .tabulator .tabulator-tableHolder

如果您使用的是 jQuery,您可以像这样进行回调:

$('.tabulator .tabulator-tableHolder').on('scroll',function(){
    // do something when user scrolls the table
})