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
70
71
72
73
74
75
76
77
78
79
| $(document).ready(function () {
| $("#dialog").dialog({
| autoOpen: false
| });
|
| $("#dialog-open").click(function () {
| $("#dialog").dialog("open");
| return false;
| });
|
| $("#dialog-modal").dialog({
| autoOpen: false,
| height: 140,
| modal: true
| });
|
| $("#dialog-modal-open").click(function () {
| $("#dialog-modal").dialog("open");
| return false;
| });
|
| $("#dialog-message").dialog({
| autoOpen: false,
| modal: true,
| buttons: {
| Ok: function () {
| $(this).dialog('close');
| }
| }
| });
|
| $("#dialog-message-open").click(function () {
| $("#dialog-message").dialog("open");
| return false;
| });
|
| $("#dialog-confirm").dialog({
| autoOpen: false,
| resizable: false,
| height: 140,
| modal: true,
| buttons: {
| 'Delete all items': function () {
| $(this).dialog('close');
| },
| Cancel: function () {
| $(this).dialog('close');
| }
| }
| });
|
| $("#dialog-confirm-open").click(function () {
| $("#dialog-confirm").dialog("open");
| return false;
| });
|
| $("#dialog-form").dialog({
| autoOpen: false,
| height: 300,
| width: 350,
| modal: true,
| buttons: {
| 'Create an account': function () {
| $(this).dialog('close');
| },
| Cancel: function () {
| $(this).dialog('close');
| }
| },
| close: function () {
| allFields.val('').removeClass('ui-state-error');
| }
| });
|
| $("#dialog-form-open").click(function () {
| $("#dialog-form").dialog("open");
| return false;
| });
| });
|
|