Scroll table to a defined position when loaded

Hi,
Here is my website : https://www.collongebasketclub.net/

The loaded items may be numerous (especially for a smartphone), so I would like to have the table scrolled at a defined date (for example today’s date) when loaded . But the entire table for a season must be loaded at opening as it is now.
To understand how things work for a table displaying 40 rows at a time, I tried :

$w('#table1').selectRow(45);

selects row 45 (without scrolling to that row) when put in a “onDataChange” event, but then

$w('#table1').scrollTo(45);

put in the same event does not scroll to row 45 either.

Using scrollTo() a pixel position won’t help either as the row is anyway not viewable on the original screen.

Any solution for code-scrolling ??

If you are displaying 40 rows at a time, then you won’t be able to select row 45.

Hi Yisrael,

I am definitely able to select row 45 by code (just checked again) ! but not to scroll the table to have this row 45 displayed.