Creating dialogs
Any page can be presented as a modal dialog by adding the
data-rel="dialog"
attribute to the page anchor link. When the "dialog" attribute is applied, the framework adds styles to add rounded corners, margins around the page and a dark background to make the "dialog" appear to be suspended above the page.<a href="foo.html" data-rel="dialog">Open dialog</a>
Transitions
By default, the dialog will open with a 'pop' transition. Like all pages, you can specify any page transition you want on the dialog by adding the
data-transition
attribute to the link. To make it feel more dialog-like, we recommend specifying a transition of "pop", "slideup" or "flip".<a href="foo.html" data-rel="dialog" data-transition="pop">Open dialog</a>
Closing dialogs
When any link is clicked within in a dialog, the framework will automatically close the dialog and transition to the requested page, just as if the dialog were a normal page. To create a "cancel" button in a dialog, just link to the page that triggered the dialog to open and add the
data-rel="back"
attribute to your link. This pattern of linking to the previous page is also usable in non-JS devices as well.
For JavaScript-generated links, you can simply set the href attribute to "#" and use the
data-rel="back"
attribute. You can also call the dialog's close()
method to programmatically close dialogs, for example: $('.ui-dialog').dialog('close')
.Setting the close button text
Just like the page plugin, you can set a dialog's close button text through an option or data attribute. The option can be configured for all dialogs by binding to the
mobileinit
event and setting the $.mobile.dialog.prototype.options.closeBtnText
property to a string of your choosing, or you can place the data attribute data-close-btn-text
to configure the text from your markup.History & Back button behavior
Since dialogs are typically used to support actions within a page, the framework does not include dialogs in the hash state history tracking. This means that dialogs will not appear in your browsing history chronology when the Back button is clicked. For example, if you are on a page, click a link to open a dialog, close the dialog, then navigate to another page, if you were to click the browser's Back button at that point you will navigate back to the first page, not the dialog.
Styling & theming
Dialogs can be styled with different theme swatches, just like any page by adding
data-theme
attributes to the header, content, or footer containers. Here is an example of a different dialog design:
Dialogs appear to be floating above an overlay layer. This overlay adopts the swatch A content color by default, but the
data-overlay-theme
attribute can be added to the page wrapper to set the overlay to any swatch letter. Here is an example of a dialog with the overlay set to swatch e:
Dialogs can also be used more like a control sheet to offer multiple buttons by removing the header:
Dialog width and margins
For the sake of readability, dialogs have a default
max-width
of 500 pixels (plus 15px padding on each side). There is also a 10% topmargin
to give dialogs larger top margin on larger screens, but collapse to a small margin on smartphones. To override these styles, add the following CSS override rule to your stylesheet and tweak as needed:.ui-dialog .ui-header,
.ui-dialog .ui-content,
.ui-dialog .ui-footer {
max-width: 500px;
margin: 10% auto 15px auto;
}
No comments:
Post a Comment