jquerymobile ajax loading issues

Stimulsoft Reports.WEB discussion
Post Reply
brianj774
Posts: 177
Joined: Tue Jan 11, 2011 7:15 am
Location: Minnesota

jquerymobile ajax loading issues

Post 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
Vladimir
Posts: 1462
Joined: Fri Apr 13, 2007 4:05 am
Location: Earth

Re: jquerymobile ajax loading issues

Post 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.
Post Reply