Click here to Skip to main content
15,885,366 members
Articles / Programming Languages / C#

Creating Dialog Box in jQuery Mobile - Part 4

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
5 Sep 2013CPOL2 min read 11.4K   2  
This post is Part 4 of creating a dialog box in jQuery mobile.

This is my 4th post of jQuery Mobile Series and in the first three posts, I had explained about Writing your first jQuery Mobile app, Creating Multiple jQuery Mobile Pages and Linking them and Prefetching and Caching jQuery Mobile Pages. And in this post, you will see how to create dialog box in jQuery mobile.

Let's Begin

Any page in jQuery mobile can be created as a dialog box. All you need to do is to apply data-rel="dialog" attribute to the page anchor link and jQuery mobile will do the rest. Remember the dialog should be a separate page div which you can load or include in your HTML.

HTML
<a href="dialog.html" data-rel="dialog">Open Dialog</a>

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.

You can also create dialog with Multi-Page application. To know more about Single Page Template and Multi-Page Template, read Part 2.

HTML
<a href="#dialog" data-rel="dialog">Open Dialog</a>

Open Dialog Demo

In the demo, you should have noticed that dialog box has close button to close it. jQuery mobile framework works quite well here. If the dialog has a header, the framework will also add a close button at the left side of the header. If no header, then no close button.

Open Dialog Without Header Demo

By default, the dialog will open with "popup" transition. But you can always change the transition using data-transition="pop" attribute.

HTML
<a href="dialog.html" 
   data-transition="flip" 
   data-rel="dialog">Open Dialog</a>

You can choose any transition method from "flip", "fade", "pop", "turn", "flow", "slide", "slidefade", "slideup" and "slidedown". To make it feel more dialog-like, jQuery Mobile recommends specifying a transition of "pop", "slidedown" or "flip".

Dialog Transition Demo

When any link is clicked within the dialog, then dialog gets closed automatically. But what if when there are no links in the dialog box? In that case, you can add a button in dialog with data-rel="back" attribute to close the dialog box and return to the previous page.

Close Button Demo

Dialogs have a default width of 92.5% and a max-width of 500 pixels. There is also a 10% top margin to give dialogs larger top margin on larger screens. You can change this default behavior by modifying .ui-dialog-contain css class.

Feel free to contact me for any help related to jQuery, I will gladly help you.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India
I am an experienced Software Developer with 11+ years of hands-on experience working with Microsoft.NET technology (ASP.NET, ASP.NET Core, C#, SQL Server, Angular).

Visit Talking Dotnet
For ASP.NET Core, read ASP.NET Core Articles

Comments and Discussions

 
-- There are no messages in this forum --