I have a single page application that has multiple Mobile Pages. I have a view level mobile page that targets another mobile page as follows:
<xe:appPage id="viewPage" pageName="viewPage" preload="true"
resetContent="true">
<xe:djxmHeading id="viewPageHeading" back="Back"
label="Search Results" moveTo="homePage">
</xe:djxmHeading>
<xe:dataView rows="7" id="dataView1" pageName="#documentPage"
openDocAsReadonly="true">
<xe:this.summaryColumn>
The other Mobile Page is "documentPage" however I get the following error when clicking an entry:
dojox.mobile.View#performTransition: destination view not found:null
If I change the pageName reference to just 'documentPage' like:
<xe:dataView rows="7" id="dataView1" pageName="documentPage"
openDocAsReadonly="true">
I then get a 404 item not found error as if it is looking for an additional xpage within the application.
Any ideas to get a successful target to the intended mobile page?
Thanks,
Geoff