Hi all, quick question: in which order pageReset() and onActivate() is designed to be called?
With T5.3 i have onActivate(String ctx) called before pageReset()
With T5.1 there were kind of emulation of page reset and the order was
opposite:
public void pageAttached()
{
boolean isFreshRequest = cele.decodePageRenderRequest(request) !=
null && cele.decodeComponentEventRequest(request) == null;
if (isFreshRequest)
{
pageReset();
}
}
