diff options
author | Todd Parker <fg.todd@gmail.com> | 2008-12-30 17:47:22 +0000 |
---|---|---|
committer | Todd Parker <fg.todd@gmail.com> | 2008-12-30 17:47:22 +0000 |
commit | 9f2c52eafd877c6b809c357eeec257504d969128 (patch) | |
tree | ddf06b6da7dc2dc0e8288a4fe1905a63cbac1b3b /demos/dialog/modal_confirmation.html | |
parent | c18b499330fb29dac2bbdf6a7b3341ea24a17fbd (diff) | |
download | jquery-ui-9f2c52eafd877c6b809c357eeec257504d969128.tar.gz jquery-ui-9f2c52eafd877c6b809c357eeec257504d969128.zip |
Added demo wrapper divs, description text and improved sample data
Diffstat (limited to 'demos/dialog/modal_confirmation.html')
-rw-r--r-- | demos/dialog/modal_confirmation.html | 58 |
1 files changed, 36 insertions, 22 deletions
diff --git a/demos/dialog/modal_confirmation.html b/demos/dialog/modal_confirmation.html index 1f5829866..2e4d264ca 100644 --- a/demos/dialog/modal_confirmation.html +++ b/demos/dialog/modal_confirmation.html @@ -1,7 +1,7 @@ <!doctype html>
<html lang="en">
<head>
- <title>jQuery UI Dialog - Buttons Demo</title>
+ <title>jQuery UI Dialog - Modal Confirmation Demo</title>
<link type="text/css" href="../demos.css" rel="stylesheet" />
<link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
@@ -12,14 +12,16 @@ <script type="text/javascript">
$(function() {
$("#dialog").dialog({ + resizable:false, + height:140, modal: true, overlay: { backgroundColor: '#000', opacity: 0.5 }, buttons: { - 'Delete this file': function() { - alert('The user was deleted forever!'); + 'Delete all items in recycle bin': function() { + alert('The items were deleted forever!'); }, Cancel: function() { alert('You clicked Cancel. The dialog will now close.'); @@ -31,26 +33,38 @@ </script>
</head>
<body>
-
-<div id="dialog" title="Modal confirmation dialog">
- <p>This type of dialog adds a button bar and is useful for confirming an action that may be destructive or important. These are typically displayed as modal dialogs to get the user's attention and force a decision before continuing.</p></div>
-
-<!-- Sample page content to illustrate the semi-transparent overlay screen -->
-<div style="padding:20px;"> -<p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p> -<p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p> -<p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p> -<form> - <input value="text input" /><br /> - <input type="checkbox" />checkbox<br /> - <input type="radio" />radio<br /> - <select> - <option>select</option> - </select><br /><br /> - <textarea>textarea</textarea><br /> -</form> -</div>
+<div class="demo"> + + <div id="dialog" title="Empty the recycle bin?"> + <p><span class="ui-icon ui-icon-alert" style="float:left; margin:0 7px 20px 0;"></span>These items will be permanently deleted and cannot be recovered. Are you sure?</p> + </div> + + <!-- Sample page content to illustrate the layering of the dialog --> + <div class="hiddenInViewSource" style="padding:20px;"> + <p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p> + <form> + <input value="text input" /><br /> + <input type="checkbox" />checkbox<br /> + <input type="radio" />radio<br /> + <select> + <option>select</option> + </select><br /><br /> + <textarea>textarea</textarea><br /> + </form> + <p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p> +</div><!-- End sample page content --> + +</div><!-- End demo --> + + + +<div class="demo-description"> + +<p>This type of dialog adds a button bar and is useful for confirming an action that may be destructive or important. These are typically displayed as modal dialogs to get the user's attention and force a decision before continuing. This example uses the an icon from the css sprite set and is set to be not resizable by setting this option to false.</p> + +</div><!-- End demo-description --> +
</body>
</html>
|