Info: I am using JQuery Mobile (in Phonegap) for building pages and navigating via them by $.mobile.changePage() or hash.

This is JQuery Mobile page anatomy:

<div id="foo" data-role="page"> 
    <div  data-role="header">...</div> 
    <div  data-role="content">...</div> 
    <div  data-role="footer">...</div> 
</div> 

Problem: I am looking for XUI.js page anatomy, because there is really poor documentation about this library.

link|improve this question

50% accept rate
I think XUI.js is more for DOM, From the site: xuijs.com "it does not try and dictate a page structure or widget paradigm" more docs are here: xuijs.com/docs/basics – Phill Pafford Jul 28 '11 at 12:49
feedback

1 Answer

up vote 1 down vote accepted

As Phill said, XUI isn't designed for managing DIVs as "pages", but it can be done. Andrew Lunny has built a lightweight page control in his starter application. You can inspect the source on Github and see how he converts the DIVs to pages. It requires a combination of CSS and setting classes on the DIVs in question.

Again; jQueryMobile is designed very specifically to do this all for you. XUI is not.

link|improve this answer
I wasn't sure if xui is able to do it similarly to jquery mobile. But example which you posted is very helpful. Thank you both for solution. – user775175 Jul 29 '11 at 13:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.