Subversion-Projekte lars-tiefland.cienc

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
9 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 - Server-side processing</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
		"processing": true,
24
		"serverSide": true,
25
		"ajax": "../server_side/scripts/server_processing.php"
26
	} );
27
} );
28
 
29
	</script>
30
</head>
31
 
32
<body class="dt-example">
33
	<div class="container">
34
		<section>
35
			<h1>DataTables example <span>Server-side processing</span></h1>
36
 
37
			<div class="info">
38
				<p>There are many ways to get your data into DataTables, and if you are working with seriously large databases, you might want to consider using the server-side
39
				options that DataTables provides. With server-side processing enabled, all paging, searching, ordering actions that DataTables performs are handed off to a server
40
				where an SQL engine (or similar) can perform these actions on the large data set (after all, that's what the database engine is designed for!). As such, each draw
41
				of the table will result in a new Ajax request being made to get the required data.</p>
42
 
43
				<p>Server-side processing is enabled by setting the <a href="//datatables.net/reference/option/serverSide"><code class="option" title=
44
				"DataTables initialisation option">serverSide</code></a> option to <code>true</code> and providing an Ajax data source through the <a href=
45
				"//datatables.net/reference/option/ajax"><code class="option" title="DataTables initialisation option">ajax</code></a> option.</p>
46
 
47
				<p>This example shows a very simple table, matching the other examples, but in this instance using server-side processing. For further and more complex examples of
48
				using server-side processing, please refer to the <a href="../server_side">server-side processing</a> examples.</p>
49
			</div>
50
 
51
			<table id="example" class="display" cellspacing="0" width="100%">
52
				<thead>
53
					<tr>
54
						<th>First name</th>
55
						<th>Last name</th>
56
						<th>Position</th>
57
						<th>Office</th>
58
						<th>Start date</th>
59
						<th>Salary</th>
60
					</tr>
61
				</thead>
62
 
63
				<tfoot>
64
					<tr>
65
						<th>First name</th>
66
						<th>Last name</th>
67
						<th>Position</th>
68
						<th>Office</th>
69
						<th>Start date</th>
70
						<th>Salary</th>
71
					</tr>
72
				</tfoot>
73
			</table>
74
 
75
			<ul class="tabs">
76
				<li class="active">Javascript</li>
77
				<li>HTML</li>
78
				<li>CSS</li>
79
				<li>Ajax</li>
80
				<li>Server-side script</li>
81
			</ul>
82
 
83
			<div class="tabs">
84
				<div class="js">
85
					<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
86
	$('#example').DataTable( {
87
		&quot;processing&quot;: true,
88
		&quot;serverSide&quot;: true,
89
		&quot;ajax&quot;: &quot;../server_side/scripts/server_processing.php&quot;
90
	} );
91
} );</code>
92
 
93
					<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
94
 
95
					<ul>
96
						<li><a href="//code.jquery.com/jquery-1.11.3.min.js">//code.jquery.com/jquery-1.11.3.min.js</a></li>
97
						<li><a href="../../media/js/jquery.dataTables.js">../../media/js/jquery.dataTables.js</a></li>
98
					</ul>
99
				</div>
100
 
101
				<div class="table">
102
					<p>The HTML shown below is the raw HTML table element, before it has been enhanced by DataTables:</p>
103
				</div>
104
 
105
				<div class="css">
106
					<div>
107
						<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
108
						additional CSS used is shown below:</p><code class="multiline language-css"></code>
109
					</div>
110
 
111
					<p>The following CSS library files are loaded for use in this example to provide the styling of the table:</p>
112
 
113
					<ul>
114
						<li><a href="../../media/css/jquery.dataTables.css">../../media/css/jquery.dataTables.css</a></li>
115
					</ul>
116
				</div>
117
 
118
				<div class="ajax">
119
					<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
120
					loaded.</p>
121
				</div>
122
 
123
				<div class="php">
124
					<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
125
					processing scripts can be written in any language, using <a href="//datatables.net/manual/server-side">the protocol described in the DataTables
126
					documentation</a>.</p>
127
				</div>
128
			</div>
129
		</section>
130
	</div>
131
 
132
	<section>
133
		<div class="footer">
134
			<div class="gradient"></div>
135
 
136
			<div class="liner">
137
				<h2>Other examples</h2>
138
 
139
				<div class="toc">
140
					<div class="toc-group">
141
						<h3><a href="../basic_init/index.html">Basic initialisation</a></h3>
142
						<ul class="toc">
143
							<li><a href="../basic_init/zero_configuration.html">Zero configuration</a></li>
144
							<li><a href="../basic_init/filter_only.html">Feature enable / disable</a></li>
145
							<li><a href="../basic_init/table_sorting.html">Default ordering (sorting)</a></li>
146
							<li><a href="../basic_init/multi_col_sort.html">Multi-column ordering</a></li>
147
							<li><a href="../basic_init/multiple_tables.html">Multiple tables</a></li>
148
							<li><a href="../basic_init/hidden_columns.html">Hidden columns</a></li>
149
							<li><a href="../basic_init/complex_header.html">Complex headers (rowspan and colspan)</a></li>
150
							<li><a href="../basic_init/dom.html">DOM positioning</a></li>
151
							<li><a href="../basic_init/flexible_width.html">Flexible table width</a></li>
152
							<li><a href="../basic_init/state_save.html">State saving</a></li>
153
							<li><a href="../basic_init/alt_pagination.html">Alternative pagination</a></li>
154
							<li><a href="../basic_init/scroll_y.html">Scroll - vertical</a></li>
155
							<li><a href="../basic_init/scroll_y_dynamic.html">Scroll - vertical, dynamic height</a></li>
156
							<li><a href="../basic_init/scroll_x.html">Scroll - horizontal</a></li>
157
							<li><a href="../basic_init/scroll_xy.html">Scroll - horizontal and vertical</a></li>
158
							<li><a href="../basic_init/comma-decimal.html">Language - Comma decimal place</a></li>
159
							<li><a href="../basic_init/language.html">Language options</a></li>
160
						</ul>
161
					</div>
162
 
163
					<div class="toc-group">
164
						<h3><a href="../advanced_init/index.html">Advanced initialisation</a></h3>
165
						<ul class="toc">
166
							<li><a href="../advanced_init/events_live.html">DOM / jQuery events</a></li>
167
							<li><a href="../advanced_init/dt_events.html">DataTables events</a></li>
168
							<li><a href="../advanced_init/column_render.html">Column rendering</a></li>
169
							<li><a href="../advanced_init/length_menu.html">Page length options</a></li>
170
							<li><a href="../advanced_init/dom_multiple_elements.html">Multiple table control elements</a></li>
171
							<li><a href="../advanced_init/complex_header.html">Complex headers with column visibility</a></li>
172
							<li><a href="../advanced_init/object_dom_read.html">Read HTML to data objects</a></li>
173
							<li><a href="../advanced_init/html5-data-attributes.html">HTML5 data-* attributes - cell data</a></li>
174
							<li><a href="../advanced_init/html5-data-options.html">HTML5 data-* attributes - table options</a></li>
175
							<li><a href="../advanced_init/language_file.html">Language file</a></li>
176
							<li><a href="../advanced_init/defaults.html">Setting defaults</a></li>
177
							<li><a href="../advanced_init/row_callback.html">Row created callback</a></li>
178
							<li><a href="../advanced_init/row_grouping.html">Row grouping</a></li>
179
							<li><a href="../advanced_init/footer_callback.html">Footer callback</a></li>
180
							<li><a href="../advanced_init/dom_toolbar.html">Custom toolbar elements</a></li>
181
							<li><a href="../advanced_init/sort_direction_control.html">Order direction sequence control</a></li>
182
						</ul>
183
					</div>
184
 
185
					<div class="toc-group">
186
						<h3><a href="../styling/index.html">Styling</a></h3>
187
						<ul class="toc">
188
							<li><a href="../styling/display.html">Base style</a></li>
189
							<li><a href="../styling/no-classes.html">Base style - no styling classes</a></li>
190
							<li><a href="../styling/cell-border.html">Base style - cell borders</a></li>
191
							<li><a href="../styling/compact.html">Base style - compact</a></li>
192
							<li><a href="../styling/hover.html">Base style - hover</a></li>
193
							<li><a href="../styling/order-column.html">Base style - order-column</a></li>
194
							<li><a href="../styling/row-border.html">Base style - row borders</a></li>
195
							<li><a href="../styling/stripe.html">Base style - stripe</a></li>
196
							<li><a href="../styling/bootstrap.html">Bootstrap</a></li>
197
							<li><a href="../styling/foundation.html">Foundation</a></li>
198
							<li><a href="../styling/jqueryUI.html">jQuery UI ThemeRoller</a></li>
199
						</ul>
200
					</div>
201
 
202
					<div class="toc-group">
203
						<h3><a href="./index.html">Data sources</a></h3>
204
						<ul class="toc active">
205
							<li><a href="./dom.html">HTML (DOM) sourced data</a></li>
206
							<li><a href="./ajax.html">Ajax sourced data</a></li>
207
							<li><a href="./js_array.html">Javascript sourced data</a></li>
208
							<li class="active"><a href="./server_side.html">Server-side processing</a></li>
209
						</ul>
210
					</div>
211
 
212
					<div class="toc-group">
213
						<h3><a href="../api/index.html">API</a></h3>
214
						<ul class="toc">
215
							<li><a href="../api/add_row.html">Add rows</a></li>
216
							<li><a href="../api/multi_filter.html">Individual column searching (text inputs)</a></li>
217
							<li><a href="../api/multi_filter_select.html">Individual column searching (select inputs)</a></li>
218
							<li><a href="../api/highlight.html">Highlighting rows and columns</a></li>
219
							<li><a href="../api/row_details.html">Child rows (show extra / detailed information)</a></li>
220
							<li><a href="../api/select_row.html">Row selection (multiple rows)</a></li>
221
							<li><a href="../api/select_single_row.html">Row selection and deletion (single row)</a></li>
222
							<li><a href="../api/form.html">Form inputs</a></li>
223
							<li><a href="../api/counter_columns.html">Index column</a></li>
224
							<li><a href="../api/show_hide.html">Show / hide columns dynamically</a></li>
225
							<li><a href="../api/api_in_init.html">Using API in callbacks</a></li>
226
							<li><a href="../api/tabs_and_scrolling.html">Scrolling and Bootstrap tabs</a></li>
227
							<li><a href="../api/regex.html">Search API (regular expressions)</a></li>
228
						</ul>
229
					</div>
230
 
231
					<div class="toc-group">
232
						<h3><a href="../ajax/index.html">Ajax</a></h3>
233
						<ul class="toc">
234
							<li><a href="../ajax/simple.html">Ajax data source (arrays)</a></li>
235
							<li><a href="../ajax/objects.html">Ajax data source (objects)</a></li>
236
							<li><a href="../ajax/deep.html">Nested object data (objects)</a></li>
237
							<li><a href="../ajax/objects_subarrays.html">Nested object data (arrays)</a></li>
238
							<li><a href="../ajax/orthogonal-data.html">Orthogonal data</a></li>
239
							<li><a href="../ajax/null_data_source.html">Generated content for a column</a></li>
240
							<li><a href="../ajax/custom_data_property.html">Custom data source property</a></li>
241
							<li><a href="../ajax/custom_data_flat.html">Flat array data source</a></li>
242
							<li><a href="../ajax/defer_render.html">Deferred rendering for speed</a></li>
243
						</ul>
244
					</div>
245
 
246
					<div class="toc-group">
247
						<h3><a href="../server_side/index.html">Server-side</a></h3>
248
						<ul class="toc">
249
							<li><a href="../server_side/simple.html">Server-side processing</a></li>
250
							<li><a href="../server_side/custom_vars.html">Custom HTTP variables</a></li>
251
							<li><a href="../server_side/post.html">POST data</a></li>
252
							<li><a href="../server_side/ids.html">Automatic addition of row ID attributes</a></li>
253
							<li><a href="../server_side/object_data.html">Object data source</a></li>
254
							<li><a href="../server_side/row_details.html">Row details</a></li>
255
							<li><a href="../server_side/select_rows.html">Row selection</a></li>
256
							<li><a href="../server_side/jsonp.html">JSONP data source for remote domains</a></li>
257
							<li><a href="../server_side/defer_loading.html">Deferred loading of data</a></li>
258
							<li><a href="../server_side/pipeline.html">Pipelining data to reduce Ajax calls for paging</a></li>
259
						</ul>
260
					</div>
261
 
262
					<div class="toc-group">
263
						<h3><a href="../plug-ins/index.html">Plug-ins</a></h3>
264
						<ul class="toc">
265
							<li><a href="../plug-ins/api.html">API plug-in methods</a></li>
266
							<li><a href="../plug-ins/sorting_auto.html">Ordering plug-ins (with type detection)</a></li>
267
							<li><a href="../plug-ins/sorting_manual.html">Ordering plug-ins (no type detection)</a></li>
268
							<li><a href="../plug-ins/range_filtering.html">Custom filtering - range search</a></li>
269
							<li><a href="../plug-ins/dom_sort.html">Live DOM ordering</a></li>
270
						</ul>
271
					</div>
272
				</div>
273
 
274
				<div class="epilogue">
275
					<p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full information about its API properties and methods.<br>
276
					Additionally, there are a wide range of <a href="http://www.datatables.net/extensions">extensions</a> and <a href=
277
					"http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of DataTables.</p>
278
 
279
					<p class="copyright">DataTables designed and created by <a href="http://www.sprymedia.co.uk">SpryMedia Ltd</a> &#169; 2007-2015<br>
280
					DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
281
				</div>
282
			</div>
283
		</div>
284
	</section>
285
</body>
286
</html>