blob: 9114effed0ab6dcc5be311ef6563c6b5c8b0549d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Language" content="en" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Dialog Demo</title>
<link rel="stylesheet" href="../themes/flora/flora.all.css" type="text/css" media="screen" title="Flora (Default)" />
<link rel="stylesheet" href="css/style.css" type="text/css" />
<script src="../jquery-1.2.3.min.js" type="text/javascript"></script>
<script type="text/javascript" src="../jquery.dimensions.js"></script>
<script type="text/javascript" src="../ui.dialog.js"></script>
<script type="text/javascript" src="../ui.mouse.js"></script>
<script type="text/javascript" src="../ui.resizable.js"></script>
<script type="text/javascript" src="../ui.draggable.js"></script>
<style type="text/css">
.hover { background: #000; }
//#example1, #example2, #example3 { display: none; }
</style>
</head>
<body class="flora">
<h2>1. Default, no options</h2>
<div class="playground">
<div id="example1">Hello, World!</div>
<br />
<button onclick="$('#example1').dialog();$(this).hide().next().show();">Create Dialog</button>
<button onclick="$('#example1').dialog('open')" style="display:none;">Open</button>
<button onclick="$('#example1').dialog('close')">Close</button>
</div>
<h2>2. Title, Width & Height</h2>
<div class="playground">
<div id="example2" title="dialog title">I have a title and I'm big</div>
<br />
<button onclick="$('#example2').dialog({width: 600, height: 300});$(this).hide().next().show();">Create Dialog</button>
<button onclick="$('#example2').dialog('open')" style="display:none;">Open</button>
<button onclick="$('#example2').dialog('close')">Close</button>
</div>
<h2>3. Buttons</h2>
<div class="playground">
<div id="example3">Please select an option below.</div>
<br />
<button onclick="$('#example3').dialog({
title: 'Are you sure?',
buttons: {
'Yes': function() { $(this).dialog('close'); alert('You clicked \'Yes\''); },
'No': function() { $(this).dialog('close'); alert('You clicked \'No\''); }
}
});$(this).hide().next().show();">Create Dialog</button>
<button onclick="$('#example3').dialog('open')" style="display:none;">Open</button>
<button onclick="$('#example3').dialog('close')">Close</button>
</div>
<script type="text/javascript">
if(!window.console) {
window.console = {
log: function() {
alert(arguments[0]);
}
}
}
</script>
</body>
</html>
|