I have 2 problems with an reloadPage in the navigateTo
my OnLoad event is
console.log('inLoad');
Appery('lbInfo').text(Appery('lbInfo').text()+' ... load');
my OnShow event is
console.log('inShow')
Appery('lbInfo').text(Appery('lbInfo').text()+' ... show');
on first load i get in the label "lbInfo ... load ... show" how it should
but after a "Appery.navigateTo('test', {reloadPage: true})"
i get only the original labeltext "lbInfo"
The event OnLoad will be called but it seems that first the evetn is called and THAN the page refresh is done - resulting into a fresh page"
and the OnShow isn't called, but the biggest problem is that the onLoad event is called before page refresh!