Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
875 lars 1
<!DOCTYPE html>
2
<html>
3
<head>
4
	<meta charset="utf-8">
5
	<link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico">
6
	<meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0">
7
 
8
	<title>DataTables example - Ajax data source (objects)</title>
9
	<link rel="stylesheet" type="text/css" href="../../media/css/jquery.dataTables.css">
10
	<link rel="stylesheet" type="text/css" href="../resources/syntax/shCore.css">
11
	<link rel="stylesheet" type="text/css" href="../resources/demo.css">
12
	<style type="text/css" class="init">
13
 
14
	</style>
15
	<script type="text/javascript" language="javascript" src="//code.jquery.com/jquery-1.11.3.min.js"></script>
16
	<script type="text/javascript" language="javascript" src="../../media/js/jquery.dataTables.js"></script>
17
	<script type="text/javascript" language="javascript" src="../resources/syntax/shCore.js"></script>
18
	<script type="text/javascript" language="javascript" src="../resources/demo.js"></script>
19
	<script type="text/javascript" language="javascript" class="init">
20
 
21
$(document).ready(function() {
22
	$('#example').DataTable( {
23
		"ajax": "data/objects.txt",
24
		"columns": [
25
			{ "data": "name" },
26
			{ "data": "position" },
27
			{ "data": "office" },
28
			{ "data": "extn" },
29
			{ "data": "start_date" },
30
			{ "data": "salary" }
31
		]
32
	} );
33
} );
34
 
35
	</script>
36
</head>
37
 
38
<body class="dt-example">
39
	<div class="container">
40
		<section>
41
			<h1>DataTables example <span>Ajax data source (objects)</span></h1>
42
 
43
			<div class="info">
44
				<p>To try and make life easy, by default, DataTables expects arrays to be used as the data source for rows in the table. However, this isn't always useful, and you
45
				may wish to have DataTables use objects as the data source for each row (i.e. each row has its data described by an object) as this can make working with the data
46
				much more understandable, particularly if you are using the API and you don't need to keep track of array indexes.</p>
47
 
48
				<p>This can be done quite simply by using the <a href="//datatables.net/reference/option/columns.data"><code class="option" title=
49
				"DataTables initialisation option">columns.data</code></a> option which you use to tell DataTables which property to use from the data source object for each
50
				column.</p>
51
 
52
				<p>In this example the Ajax source returns an array of objects, which DataTables uses to display the table. The structure of the row's data source in this example
53
				is:</p>
54
				<pre>
55
<code class="multiline">{
56
	"name":	   "Tiger Nixon",
57
	"position":   "System Architect",
58
	"salary":	 "$3,120",
59
	"start_date": "2011/04/25",
60
	"office":	 "Edinburgh",
61
	"extn":	   "5421"
62
}
63
</code>
64
</pre>
65
 
66
				<p>For more details on loading a DataTable with Ajax data, please refer to the <a href="https://datatables.net/manual/ajax">Ajax section of the manual</a>.</p>
67
			</div>
68
 
69
			<table id="example" class="display" cellspacing="0" width="100%">
70
				<thead>
71
					<tr>
72
						<th>Name</th>
73
						<th>Position</th>
74
						<th>Office</th>
75
						<th>Extn.</th>
76
						<th>Start date</th>
77
						<th>Salary</th>
78
					</tr>
79
				</thead>
80
 
81
				<tfoot>
82
					<tr>
83
						<th>Name</th>
84
						<th>Position</th>
85
						<th>Office</th>
86
						<th>Extn.</th>
87
						<th>Start date</th>
88
						<th>Salary</th>
89
					</tr>
90
				</tfoot>
91
			</table>
92
 
93
			<ul class="tabs">
94
				<li class="active">Javascript</li>
95
				<li>HTML</li>
96
				<li>CSS</li>
97
				<li>Ajax</li>
98
				<li>Server-side script</li>
99
			</ul>
100
 
101
			<div class="tabs">
102
				<div class="js">
103
					<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
104
	$('#example').DataTable( {
105
		&quot;ajax&quot;: &quot;data/objects.txt&quot;,
106
		&quot;columns&quot;: [
107
			{ &quot;data&quot;: &quot;name&quot; },
108
			{ &quot;data&quot;: &quot;position&quot; },
109
			{ &quot;data&quot;: &quot;office&quot; },
110
			{ &quot;data&quot;: &quot;extn&quot; },
111
			{ &quot;data&quot;: &quot;start_date&quot; },
112
			{ &quot;data&quot;: &quot;salary&quot; }
113
		]
114
	} );
115
} );</code>
116
 
117
					<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
118
 
119
					<ul>
120
						<li><a href="//code.jquery.com/jquery-1.11.3.min.js">//code.jquery.com/jquery-1.11.3.min.js</a></li>
121
						<li><a href="../../media/js/jquery.dataTables.js">../../media/js/jquery.dataTables.js</a></li>
122
					</ul>
123
				</div>
124
 
125
				<div class="table">
126
					<p>The HTML shown below is the raw HTML table element, before it has been enhanced by DataTables:</p>
127
				</div>
128
 
129
				<div class="css">
130
					<div>
131
						<p>This example uses a little bit of additional CSS beyond what is loaded from the library files (below), in order to correctly display the table. The
132
						additional CSS used is shown below:</p><code class="multiline language-css"></code>
133
					</div>
134
 
135
					<p>The following CSS library files are loaded for use in this example to provide the styling of the table:</p>
136
 
137
					<ul>
138
						<li><a href="../../media/css/jquery.dataTables.css">../../media/css/jquery.dataTables.css</a></li>
139
					</ul>
140
				</div>
141
 
142
				<div class="ajax">
143
					<p>This table loads data by Ajax. The latest data that has been loaded is shown below. This data will update automatically as any additional data is
144
					loaded.</p>
145
				</div>
146
 
147
				<div class="php">
148
					<p>The script used to perform the server-side processing for this table is shown below. Please note that this is just an example script using PHP. Server-side
149
					processing scripts can be written in any language, using <a href="//datatables.net/manual/server-side">the protocol described in the DataTables
150
					documentation</a>.</p>
151
				</div>
152
			</div>
153
		</section>
154
	</div>
155
 
156
	<section>
157
		<div class="footer">
158
			<div class="gradient"></div>
159
 
160
			<div class="liner">
161
				<h2>Other examples</h2>
162
 
163
				<div class="toc">
164
					<div class="toc-group">
165
						<h3><a href="../basic_init/index.html">Basic initialisation</a></h3>
166
						<ul class="toc">
167
							<li><a href="../basic_init/zero_configuration.html">Zero configuration</a></li>
168
							<li><a href="../basic_init/filter_only.html">Feature enable / disable</a></li>
169
							<li><a href="../basic_init/table_sorting.html">Default ordering (sorting)</a></li>
170
							<li><a href="../basic_init/multi_col_sort.html">Multi-column ordering</a></li>
171
							<li><a href="../basic_init/multiple_tables.html">Multiple tables</a></li>
172
							<li><a href="../basic_init/hidden_columns.html">Hidden columns</a></li>
173
							<li><a href="../basic_init/complex_header.html">Complex headers (rowspan and colspan)</a></li>
174
							<li><a href="../basic_init/dom.html">DOM positioning</a></li>
175
							<li><a href="../basic_init/flexible_width.html">Flexible table width</a></li>
176
							<li><a href="../basic_init/state_save.html">State saving</a></li>
177
							<li><a href="../basic_init/alt_pagination.html">Alternative pagination</a></li>
178
							<li><a href="../basic_init/scroll_y.html">Scroll - vertical</a></li>
179
							<li><a href="../basic_init/scroll_y_dynamic.html">Scroll - vertical, dynamic height</a></li>
180
							<li><a href="../basic_init/scroll_x.html">Scroll - horizontal</a></li>
181
							<li><a href="../basic_init/scroll_xy.html">Scroll - horizontal and vertical</a></li>
182
							<li><a href="../basic_init/comma-decimal.html">Language - Comma decimal place</a></li>
183
							<li><a href="../basic_init/language.html">Language options</a></li>
184
						</ul>
185
					</div>
186
 
187
					<div class="toc-group">
188
						<h3><a href="../advanced_init/index.html">Advanced initialisation</a></h3>
189
						<ul class="toc">
190
							<li><a href="../advanced_init/events_live.html">DOM / jQuery events</a></li>
191
							<li><a href="../advanced_init/dt_events.html">DataTables events</a></li>
192
							<li><a href="../advanced_init/column_render.html">Column rendering</a></li>
193
							<li><a href="../advanced_init/length_menu.html">Page length options</a></li>
194
							<li><a href="../advanced_init/dom_multiple_elements.html">Multiple table control elements</a></li>
195
							<li><a href="../advanced_init/complex_header.html">Complex headers with column visibility</a></li>
196
							<li><a href="../advanced_init/object_dom_read.html">Read HTML to data objects</a></li>
197
							<li><a href="../advanced_init/html5-data-attributes.html">HTML5 data-* attributes - cell data</a></li>
198
							<li><a href="../advanced_init/html5-data-options.html">HTML5 data-* attributes - table options</a></li>
199
							<li><a href="../advanced_init/language_file.html">Language file</a></li>
200
							<li><a href="../advanced_init/defaults.html">Setting defaults</a></li>
201
							<li><a href="../advanced_init/row_callback.html">Row created callback</a></li>
202
							<li><a href="../advanced_init/row_grouping.html">Row grouping</a></li>
203
							<li><a href="../advanced_init/footer_callback.html">Footer callback</a></li>
204
							<li><a href="../advanced_init/dom_toolbar.html">Custom toolbar elements</a></li>
205
							<li><a href="../advanced_init/sort_direction_control.html">Order direction sequence control</a></li>
206
						</ul>
207
					</div>
208
 
209
					<div class="toc-group">
210
						<h3><a href="../styling/index.html">Styling</a></h3>
211
						<ul class="toc">
212
							<li><a href="../styling/display.html">Base style</a></li>
213
							<li><a href="../styling/no-classes.html">Base style - no styling classes</a></li>
214
							<li><a href="../styling/cell-border.html">Base style - cell borders</a></li>
215
							<li><a href="../styling/compact.html">Base style - compact</a></li>
216
							<li><a href="../styling/hover.html">Base style - hover</a></li>
217
							<li><a href="../styling/order-column.html">Base style - order-column</a></li>
218
							<li><a href="../styling/row-border.html">Base style - row borders</a></li>
219
							<li><a href="../styling/stripe.html">Base style - stripe</a></li>
220
							<li><a href="../styling/bootstrap.html">Bootstrap</a></li>
221
							<li><a href="../styling/foundation.html">Foundation</a></li>
222
							<li><a href="../styling/jqueryUI.html">jQuery UI ThemeRoller</a></li>
223
						</ul>
224
					</div>
225
 
226
					<div class="toc-group">
227
						<h3><a href="../data_sources/index.html">Data sources</a></h3>
228
						<ul class="toc">
229
							<li><a href="../data_sources/dom.html">HTML (DOM) sourced data</a></li>
230
							<li><a href="../data_sources/ajax.html">Ajax sourced data</a></li>
231
							<li><a href="../data_sources/js_array.html">Javascript sourced data</a></li>
232
							<li><a href="../data_sources/server_side.html">Server-side processing</a></li>
233
						</ul>
234
					</div>
235
 
236
					<div class="toc-group">
237
						<h3><a href="../api/index.html">API</a></h3>
238
						<ul class="toc">
239
							<li><a href="../api/add_row.html">Add rows</a></li>
240
							<li><a href="../api/multi_filter.html">Individual column searching (text inputs)</a></li>
241
							<li><a href="../api/multi_filter_select.html">Individual column searching (select inputs)</a></li>
242
							<li><a href="../api/highlight.html">Highlighting rows and columns</a></li>
243
							<li><a href="../api/row_details.html">Child rows (show extra / detailed information)</a></li>
244
							<li><a href="../api/select_row.html">Row selection (multiple rows)</a></li>
245
							<li><a href="../api/select_single_row.html">Row selection and deletion (single row)</a></li>
246
							<li><a href="../api/form.html">Form inputs</a></li>
247
							<li><a href="../api/counter_columns.html">Index column</a></li>
248
							<li><a href="../api/show_hide.html">Show / hide columns dynamically</a></li>
249
							<li><a href="../api/api_in_init.html">Using API in callbacks</a></li>
250
							<li><a href="../api/tabs_and_scrolling.html">Scrolling and Bootstrap tabs</a></li>
251
							<li><a href="../api/regex.html">Search API (regular expressions)</a></li>
252
						</ul>
253
					</div>
254
 
255
					<div class="toc-group">
256
						<h3><a href="./index.html">Ajax</a></h3>
257
						<ul class="toc active">
258
							<li><a href="./simple.html">Ajax data source (arrays)</a></li>
259
							<li class="active"><a href="./objects.html">Ajax data source (objects)</a></li>
260
							<li><a href="./deep.html">Nested object data (objects)</a></li>
261
							<li><a href="./objects_subarrays.html">Nested object data (arrays)</a></li>
262
							<li><a href="./orthogonal-data.html">Orthogonal data</a></li>
263
							<li><a href="./null_data_source.html">Generated content for a column</a></li>
264
							<li><a href="./custom_data_property.html">Custom data source property</a></li>
265
							<li><a href="./custom_data_flat.html">Flat array data source</a></li>
266
							<li><a href="./defer_render.html">Deferred rendering for speed</a></li>
267
						</ul>
268
					</div>
269
 
270
					<div class="toc-group">
271
						<h3><a href="../server_side/index.html">Server-side</a></h3>
272
						<ul class="toc">
273
							<li><a href="../server_side/simple.html">Server-side processing</a></li>
274
							<li><a href="../server_side/custom_vars.html">Custom HTTP variables</a></li>
275
							<li><a href="../server_side/post.html">POST data</a></li>
276
							<li><a href="../server_side/ids.html">Automatic addition of row ID attributes</a></li>
277
							<li><a href="../server_side/object_data.html">Object data source</a></li>
278
							<li><a href="../server_side/row_details.html">Row details</a></li>
279
							<li><a href="../server_side/select_rows.html">Row selection</a></li>
280
							<li><a href="../server_side/jsonp.html">JSONP data source for remote domains</a></li>
281
							<li><a href="../server_side/defer_loading.html">Deferred loading of data</a></li>
282
							<li><a href="../server_side/pipeline.html">Pipelining data to reduce Ajax calls for paging</a></li>
283
						</ul>
284
					</div>
285
 
286
					<div class="toc-group">
287
						<h3><a href="../plug-ins/index.html">Plug-ins</a></h3>
288
						<ul class="toc">
289
							<li><a href="../plug-ins/api.html">API plug-in methods</a></li>
290
							<li><a href="../plug-ins/sorting_auto.html">Ordering plug-ins (with type detection)</a></li>
291
							<li><a href="../plug-ins/sorting_manual.html">Ordering plug-ins (no type detection)</a></li>
292
							<li><a href="../plug-ins/range_filtering.html">Custom filtering - range search</a></li>
293
							<li><a href="../plug-ins/dom_sort.html">Live DOM ordering</a></li>
294
						</ul>
295
					</div>
296
				</div>
297
 
298
				<div class="epilogue">
299
					<p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full information about its API properties and methods.<br>
300
					Additionally, there are a wide range of <a href="http://www.datatables.net/extensions">extensions</a> and <a href=
301
					"http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of DataTables.</p>
302
 
303
					<p class="copyright">DataTables designed and created by <a href="http://www.sprymedia.co.uk">SpryMedia Ltd</a> &#169; 2007-2015<br>
304
					DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
305
				</div>
306
			</div>
307
		</div>
308
	</section>
309
</body>
310
</html>