Olá,
Tenho uma tela reativa usando uma AdaptiveGallery. Quando navego para outra tela e retorno usando o botão "voltar" do navegador, o layout dos cards se desconfigura. Parece ser um problema de cache/renderização, já que os dados estão presentes, mas a interface não recalcula corretamente.
Hi @Joelson Studart ,
Could you please add some screenshots showing how the layout is misconfigured? It would also help if you could share your OML, or a sample OML that reproduces the issue.
You can also take a look at this discussion, it might be helpful:
How to refresh the page layout and if function after browser clicks to go back? | OutSystems
Excelente @Mihai Melencu , obrigado, por ser algo privado não tem como eu compartilhar OML.
This usually happens because the screen is restored from cache when navigating back, but the AdaptiveGallery layout is not recalculated. A common fix is to force a reflow by triggering a resize event (e.g., in OnRender or OnReady using window.dispatchEvent(new Event('resize'))). Alternatively, you can use AjaxRefresh on the gallery or disable screen cache if needed.