A possible bug in scrollable tables feature

Hi!
We are upgrading our tables to scrollable tables, and I am having an issue. The table is a simple table with server side pagination. I am trying to programmatically select all table rows using
table1.selectRow(_.range(0, table1.data.length))
After scrolling and loading new data from the server, the table1.data.length returns the size of a page and not the entire data we are displaying, so the result is that only the first n rows are being selected and not the entire table data.

Is there anything I'm missing?

@Maria

Hey there! Instead of doing table1.data.length, could you do the length of the query you are using to populate the table?