Disable pull refresh on floating group (android)?

Hi,

I have a floating group which has a scrollable group in the upper area (within both red arrows) and a fix button on the button . It is a wrapped native app. On iOS everything works fine. On android i have the problem that it auto pull refreshes when I want to scroll up again. So I can only scroll down.
Any idea how to disable the pull refresh or maybe any other work around? Thanks a lot.
Carsten

i had similar issue with auto refresh when trying to drag an element on the screen. I put HTML element with the code

<style>

body {
    overscroll-behavior: contain;
}

</style>

thanks for the prompt reply. unfortunately it didnt work out for my case.

It seems to be a general issue with pop ups on android as soon as there is a scrollable part in it. It always wants to refresh when scroll up again.

check this. I put a scrollable popup on the page and it doesn’t reload

editor

My problem occurs within an android device. The app is wrapped and released as native app. So I think the script doesn´t work for a native app within an android device. On mobile browser it might work.

2 Likes

This topic was automatically closed after 70 days. New replies are no longer allowed.