-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fullscreen page and navigation between panels #35
Comments
Short on time until end of the month. Some thoughts:
|
Hi frequent, thanks for your quick response, my first page should be a standard jqm page, but if I remove the wrapper and the panel and then I changePage to the 2nd the result is a blank page, so I added a single main panel to my page. The 2nd page load correctly and is splitted, so it's ok. The 3rd page should be a splitted page with the 3d page main and the 2nd page menu. |
ok. seems multiview is not triggering, you are missing some classes in your html tag, which multiview should be adding. Pretty sure this is due to my requireJS handler. Let me check. |
Hi,
first of all thank you for your great work and for your help, I'm trying to display a fullscreen page and then changePage to a different .html page, splitted in a 'menu' and a 'main', this one contain a dinamically generated listview.
The following step would be changePage() to a 3rd .html, in wich the main content is dynamically generated.
My code should appear like this: in the page1.html I got a
In this way the content doesn't appear splitted, then I call a $.mobile.changePage( "page2.html" ); and my page2.html will be like this:
The page will be splitted and the listview correctly loaded. From the link in the listview I call$.mobile.changePage( "page3.html", {pageContainer: $ ('div:jqmData(id="foo3-main-panel")') } );
My page3.html code should be like this:
The result is a blank page, the error displayed is data.fromPage is undefined.
I would understand if the approach is correct. My purpose is to load the main content from foo3.html in the right panel, also want to understand how I can control menu panel, in either case I wanted to keep menu foo2.html or loading the one from foo3.html.
What is the proper way to control that?
Thanks in advance and keep with it
The text was updated successfully, but these errors were encountered: