Re: How to disable the tapestry default loading on refresh page
Carlos Montero Canabal <[email protected]> Wed, 12 Dec 2018 12:51:06 +0100
| Newsgroups | gmane.comp.java.tapestry.user |
|---|---|
| Message-ID | <CAMW0rKFrEJr4189L-VSm+seA7uDWkMCyAR_AOXOniJfpe5aqrQ@mail.gmail.com> |
Hi,
If you want you can disable it throw SymbolsContants on AppModule
https://tapestry.apache.org/5.4/apidocs/org/apache/tapestry5/SymbolConstants.html#ENABLE_PAGELOADING_MASK
public void contributeApplicationDefaults(MappedConfiguration<String,
String> configuration)
{
configuration.add(SymbolConstants.ENABLE_PAGELOADING_MASK, "false");
}
El mié., 12 dic. 2018 a las 12:00, Rbsn Lbk (<[email protected]>)
escribió:
> Hi,
>
> I am having some issues with the default Tapestry loading on refresh the
> page. I will give more context:
>
> I have an application with tabs, and each tab refresh the page when I click
> it. The issue is, that sometimes move back and forth between pages and
> other pages freezes my application.
>