I'm using tab on mobile, and I'm going to use On Scroll Ending Action using List in that content. However, scrolling all the way down does not bring up more lists.
I tested it with chrome or mobile emulator, but it doesn't work.
Please tell me the solution.
OnScrollEnding Action Logic
Aggregate Properties
Widget Tree
Hello,Please check overflow-y
overflow-y: initial should be set instead of auto for the screen container div. Updating Out system UI version or an overriding of this property should correct the issue.
.screen-container {
overflow-y: initial;
height: auto;
}Also, please check what the Max records and the increment are set to? The infinite-scroll-threshold is usually set to 2000px, and I believe its how many pixels from THE END of your List you have to be to trigger the event, so you could reduce it to 500px for example, to see if that triggers it.Regards,Sirajeddine
Hello, Sirajeddine
I'm Latest OutSystemsUI Updated but The problem has not been solved.
I tried it screen css in your code
but screen's scroll is freezing.
Did I do something wrong?
Hello @GeonOh Hwang,
I was having the exact same problem, and I got a great solution by @Bernardo Cardoso on his answer: https://www.outsystems.com/forums/discussion/86876/list-in-tabs-not-firing-onscrollending/#Post367335
CA