Hello All,
I'm having problems with Lists inside TabContentItem not firing the OnScrollEnding event.
I've attached the example TabScrollEndTest App with two screens:
Can you help with this issue? Is there any workaround/configuration I am missing?
Thank you.
CA
Hi @Carlos Alfaro,
The issue is caused by a incompatibility with the overflow CSS property from the Tabs.
You can add this CSS to fix the issue:
.osui-tabs__content-item {
overflow-y:initial;
}
Please note, that if you intend to have other tabs that won't have a OnScrollEnding behaviour, you might want to also add this line, to prevent the scroll to affect all tabs:
.osui-tabs__content-item:not(.osui-tabs--is-active) {
display: none;
Best regards,
Bernardo Cardoso
I tested this CSS, but it still doesn't work. Can put up a demo. I attach my demo