-
Notifications
You must be signed in to change notification settings - Fork 14
/
events.html
172 lines (133 loc) · 5.63 KB
/
events.html
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Using events</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="scripts/jquery-1.6.4.min.js" type="text/javascript"></script>
<script src="../src/jquery.loadJSON.js" type="text/javascript"></script>
<script src="scripts/jquery.dataTables.js" type="text/javascript"></script>
<script type="text/javascript" src="scripts/shCore.js"></script>
<script type="text/javascript" src="scripts/shBrushJScript.js"></script>
<script type="text/javascript" src="scripts/shBrushXml.js"></script>
<link type="text/css" rel="stylesheet" href="scripts/shCoreDefault.css"/>
<link type="text/css" rel="stylesheet" href="scripts/shThemeDefault.css"/>
<link type="text/css" rel="stylesheet" href="scripts/demo_table.css"/>
<link type="text/css" rel="stylesheet" href="scripts/demo_table.css"/>
<link type="text/css" rel="stylesheet" href="scripts/demo_page.css"/>
<style type="text/css">label{ float:none; width:auto }</style>
<script type="text/javascript">SyntaxHighlighter.all();</script>
<script language="javascript" type="text/javascript">
$(document).ready(function () {
$('tbody tr').loadJSON('list.js', {
onLoading: function () {
$("table#myTable").hide();
},
onLoaded: function () {
$("table#myTable").dataTable({sPaginationType: "full_numbers"}).fadeIn("slow");;
}
});
});
</script>
</head>
<body>
<div id="page-wrap">
<a href="http://code.google.com/p/jquery-load-json/" alt="Home">Home</a>
<div id="demo">
<h1>Adding event handlers</h1>
<p>JQuery loadJSON plugin enables you to attach event handlers that will be called before or after the JSON content is loaded into the
template. In the initialization call you can define onLoading and onLoaded functions that will be called before and after json is
loaded.</p>
<h2>Live Example</h2>
<p>In this example, JSON array will be loaded into the table template. Before we load the JSON, we will hide the table so user will not
see initial blank template. When table is loaded, table will be shown using the fadding effect.
</p>
<p>Additionally, you cna put any other code in these functions. In this example, after the table is loaded I have applied
DataTables plugin that adds client side sorting and filtering.</p>
<br/>
<br/>
<table id="myTable" class="display">
<thead>
<tr>
<th>Name</th><th>Address</th><th>Town</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="details.html" class="ID"><span class="Name"></span></a></td>
<td><span class="Address"></span></td>
<td><span class="Town"></span></td>
</tr>
</tbody>
</table>
<br/>
<br />
<br />
<h2>Implementation</h2>
<p>In this example is placed template that can be used to load array into the table. The table template is shown below:
</p>
<pre class="brush: xml;">
<table id="myTable" class="display">
<thead>
<tr>
<th>Name</th><th>Address</th><th>Town</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="details.html" class="ID"><span class="Name"></span></a></td>
<td><span class="Address"></span></td>
<td><span class="Town"></span></td>
</tr>
</tbody>
</table>
</pre>
<p>JSON array is same as in the <a href="list.html">list example</a>:</p>
<pre class="brush: js;">
[
{
"ID": 17,
"Name": "Emkay Entertainments",
"Address": "Nobel House, Regent Centre"
},
{
"ID": 18,
"Name": "The Empire",
"Address": "Milton Keynes Leisure Plaza"
},
{
"ID": 19,
"Name": "Asadul Ltd",
"Address": "Hophouse"
},
{
"ID": 20,
"Name": "Star Records",
"Address": "St Danny Street"
},
{
"ID": 21,
"Name": "Ashley Mark Publishing Company",
"Address": "1-2 Vance Court"
}
]
</pre>
<p>This array contains elements with properties ID, Name, and Address that will be bound to the elements in the HTML template.</p>
<p>When JSON is loaded into the template, we have two functionas that will be called before JSON is loaded (onLoading), and after
JSON is loaded (onLoaded). Example of the code is shown below:</p>
<pre class="brush: js;">
$(document).ready(function () {
$('tbody tr').loadJSON('list.js', {
onLoading: function () {
$("table#myTable").hide();
},
onLoaded: function () {
$("table#myTable").dataTable({sPaginationType: "full_numbers"}).fadeIn("slow");;
}
});
});
</pre>
</div>
</div>
</body>
</html>