Page 1 of 1

jquerymobile ajax loading issues

Posted: Mon Mar 25, 2013 4:45 pm
by brianj774
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

Re: jquerymobile ajax loading issues

Posted: Tue Mar 26, 2013 2:18 pm
by Vladimir
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:

Code: Select all

        <div id="main" data-role="page">
            <asp:ContentPlaceHolder ID="MainContent" runat="server" />

            <div id="footer">
            </div>
        </div>
In our case, it helped to avoid some errors in the MvcViewer.

Thank you.