From what I'm seeing, and I don't know how to describe it very well, neither the MvcViewer or MvcViewerFx scripts work from jquerymobile page transitions.
They both work from within the head tag, but ONLY on a full DOM reload....
I suspect that jqm and the "viewer" scripts are incompatible somehow
jquerymobile ajax loading issues
Re: jquerymobile ajax loading issues
Hello,
We added jQueryMobile scripts and found that the viewer scripts initialized twice. Please try to set the data-role="page" parameter for the <div> element in which MvcViewer is located:
In our case, it helped to avoid some errors in the MvcViewer.
Thank you.
We added jQueryMobile scripts and found that the viewer scripts initialized twice. Please try to set the data-role="page" parameter for the <div> element in which MvcViewer is located:
Code: Select all
<div id="main" data-role="page">
<asp:ContentPlaceHolder ID="MainContent" runat="server" />
<div id="footer">
</div>
</div>
Thank you.