Atozed Forums

Full Version: OnAsyncPageUnloaded not working on mobile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, 

I tried to use IWForm's OnAsyncPageUnloaded  event for triggers when the page is unloaded on browser side (due to browser/tab closing) to close session with command.


Code:
  if AIsCurrent and (WebApplication.ActiveFormCount = 1) then
   WebApplication.SelfDestruct;

It's ok on desktop browser (Chrome, Edge) but I tested on my mobile browser (Chrome, Safari) but It's not working.

How do I get it to work on mobile?


Note :

This link for unload event, at Usage note paragraph say that :

Quote:Especially on mobile, the unload event is not reliably fired.


Thank you
Unfortunately it is not guaranteed to work on mobile browsers if the browser is just sent to the back ground.

Maybe you can describe better how's your test scenario, which browser you are using and what are your requirements.