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 ??