476
Views
3
Comments
[OutSystemsUI] List's On Scroll Ending Action in Tabs Not Working
Question
Application Type
Mobile
Service Studio Version
11.53.36 (Build 61842)
Platform Version
11.19.0 (Build 37992)

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


2023-01-19 15-05-03
Sirajeddine Bouasker

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

UserImage.jpg
GeonOh Hwang

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? 



2025-02-22 18-27-01
Alfaro
 
MVP

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

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.