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 - Footer callback</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
	th { white-space: nowrap; }
15
 
16
	</style>
17
	<script type="text/javascript" language="javascript" src="//code.jquery.com/jquery-1.11.3.min.js"></script>
18
	<script type="text/javascript" language="javascript" src="../../media/js/jquery.dataTables.js"></script>
19
	<script type="text/javascript" language="javascript" src="../resources/syntax/shCore.js"></script>
20
	<script type="text/javascript" language="javascript" src="../resources/demo.js"></script>
21
	<script type="text/javascript" language="javascript" class="init">
22
 
23
 
24
$(document).ready(function() {
25
	$('#example').DataTable( {
26
		"footerCallback": function ( row, data, start, end, display ) {
27
			var api = this.api(), data;
28
 
29
			// Remove the formatting to get integer data for summation
30
			var intVal = function ( i ) {
31
				return typeof i === 'string' ?
32
					i.replace(/[\$,]/g, '')*1 :
33
					typeof i === 'number' ?
34
						i : 0;
35
			};
36
 
37
			// Total over all pages
38
			total = api
39
				.column( 4 )
40
				.data()
41
				.reduce( function (a, b) {
42
					return intVal(a) + intVal(b);
43
				} );
44
 
45
			// Total over this page
46
			pageTotal = api
47
				.column( 4, { page: 'current'} )
48
				.data()
49
				.reduce( function (a, b) {
50
					return intVal(a) + intVal(b);
51
				}, 0 );
52
 
53
			// Update footer
54
			$( api.column( 4 ).footer() ).html(
55
				'$'+pageTotal +' ( $'+ total +' total)'
56
			);
57
		}
58
	} );
59
} );
60
 
61
 
62
	</script>
63
</head>
64
 
65
<body class="dt-example">
66
	<div class="container">
67
		<section>
68
			<h1>DataTables example <span>Footer callback</span></h1>
69
 
70
			<div class="info">
71
				<p>Through the use of the header and footer callback manipulation functions provided by DataTables (<a href=
72
				"//datatables.net/reference/option/headerCallback"><code class="option" title="DataTables initialisation option">headerCallback</code></a> and <a href=
73
				"//datatables.net/reference/option/footerCallback"><code class="option" title="DataTables initialisation option">footerCallback</code></a>), it is possible to
74
				perform some powerful and useful data manipulation functions, such as summarising data in the table.</p>
75
 
76
				<p>The example below shows a footer callback being used to total the data for a column (both the visible and the hidden data) using the <a href=
77
				"//datatables.net/reference/api/column().data()"><code class="api" title="DataTables API method">column().data()</code></a> API method and <a href=
78
				"//datatables.net/reference/api/column().footer()"><code class="api" title="DataTables API method">column().footer()</code></a> for writing the value into the
79
				footer.</p>
80
			</div>
81
 
82
			<table id="example" class="display" cellspacing="0" width="100%">
83
				<thead>
84
					<tr>
85
						<th>First name</th>
86
						<th>Last name</th>
87
						<th>Position</th>
88
						<th>Office</th>
89
						<th>Salary</th>
90
					</tr>
91
				</thead>
92
 
93
				<tfoot>
94
					<tr>
95
						<th colspan="4" style="text-align:right">Total:</th>
96
						<th></th>
97
					</tr>
98
				</tfoot>
99
 
100
				<tbody>
101
					<tr>
102
						<td>Tiger</td>
103
						<td>Nixon</td>
104
						<td>System Architect</td>
105
						<td>Edinburgh</td>
106
						<td>$320,800</td>
107
					</tr>
108
					<tr>
109
						<td>Garrett</td>
110
						<td>Winters</td>
111
						<td>Accountant</td>
112
						<td>Tokyo</td>
113
						<td>$170,750</td>
114
					</tr>
115
					<tr>
116
						<td>Ashton</td>
117
						<td>Cox</td>
118
						<td>Junior Technical Author</td>
119
						<td>San Francisco</td>
120
						<td>$86,000</td>
121
					</tr>
122
					<tr>
123
						<td>Cedric</td>
124
						<td>Kelly</td>
125
						<td>Senior Javascript Developer</td>
126
						<td>Edinburgh</td>
127
						<td>$433,060</td>
128
					</tr>
129
					<tr>
130
						<td>Airi</td>
131
						<td>Satou</td>
132
						<td>Accountant</td>
133
						<td>Tokyo</td>
134
						<td>$162,700</td>
135
					</tr>
136
					<tr>
137
						<td>Brielle</td>
138
						<td>Williamson</td>
139
						<td>Integration Specialist</td>
140
						<td>New York</td>
141
						<td>$372,000</td>
142
					</tr>
143
					<tr>
144
						<td>Herrod</td>
145
						<td>Chandler</td>
146
						<td>Sales Assistant</td>
147
						<td>San Francisco</td>
148
						<td>$137,500</td>
149
					</tr>
150
					<tr>
151
						<td>Rhona</td>
152
						<td>Davidson</td>
153
						<td>Integration Specialist</td>
154
						<td>Tokyo</td>
155
						<td>$327,900</td>
156
					</tr>
157
					<tr>
158
						<td>Colleen</td>
159
						<td>Hurst</td>
160
						<td>Javascript Developer</td>
161
						<td>San Francisco</td>
162
						<td>$205,500</td>
163
					</tr>
164
					<tr>
165
						<td>Sonya</td>
166
						<td>Frost</td>
167
						<td>Software Engineer</td>
168
						<td>Edinburgh</td>
169
						<td>$103,600</td>
170
					</tr>
171
					<tr>
172
						<td>Jena</td>
173
						<td>Gaines</td>
174
						<td>Office Manager</td>
175
						<td>London</td>
176
						<td>$90,560</td>
177
					</tr>
178
					<tr>
179
						<td>Quinn</td>
180
						<td>Flynn</td>
181
						<td>Support Lead</td>
182
						<td>Edinburgh</td>
183
						<td>$342,000</td>
184
					</tr>
185
					<tr>
186
						<td>Charde</td>
187
						<td>Marshall</td>
188
						<td>Regional Director</td>
189
						<td>San Francisco</td>
190
						<td>$470,600</td>
191
					</tr>
192
					<tr>
193
						<td>Haley</td>
194
						<td>Kennedy</td>
195
						<td>Senior Marketing Designer</td>
196
						<td>London</td>
197
						<td>$313,500</td>
198
					</tr>
199
					<tr>
200
						<td>Tatyana</td>
201
						<td>Fitzpatrick</td>
202
						<td>Regional Director</td>
203
						<td>London</td>
204
						<td>$385,750</td>
205
					</tr>
206
					<tr>
207
						<td>Michael</td>
208
						<td>Silva</td>
209
						<td>Marketing Designer</td>
210
						<td>London</td>
211
						<td>$198,500</td>
212
					</tr>
213
					<tr>
214
						<td>Paul</td>
215
						<td>Byrd</td>
216
						<td>Chief Financial Officer (CFO)</td>
217
						<td>New York</td>
218
						<td>$725,000</td>
219
					</tr>
220
					<tr>
221
						<td>Gloria</td>
222
						<td>Little</td>
223
						<td>Systems Administrator</td>
224
						<td>New York</td>
225
						<td>$237,500</td>
226
					</tr>
227
					<tr>
228
						<td>Bradley</td>
229
						<td>Greer</td>
230
						<td>Software Engineer</td>
231
						<td>London</td>
232
						<td>$132,000</td>
233
					</tr>
234
					<tr>
235
						<td>Dai</td>
236
						<td>Rios</td>
237
						<td>Personnel Lead</td>
238
						<td>Edinburgh</td>
239
						<td>$217,500</td>
240
					</tr>
241
					<tr>
242
						<td>Jenette</td>
243
						<td>Caldwell</td>
244
						<td>Development Lead</td>
245
						<td>New York</td>
246
						<td>$345,000</td>
247
					</tr>
248
					<tr>
249
						<td>Yuri</td>
250
						<td>Berry</td>
251
						<td>Chief Marketing Officer (CMO)</td>
252
						<td>New York</td>
253
						<td>$675,000</td>
254
					</tr>
255
					<tr>
256
						<td>Caesar</td>
257
						<td>Vance</td>
258
						<td>Pre-Sales Support</td>
259
						<td>New York</td>
260
						<td>$106,450</td>
261
					</tr>
262
					<tr>
263
						<td>Doris</td>
264
						<td>Wilder</td>
265
						<td>Sales Assistant</td>
266
						<td>Sidney</td>
267
						<td>$85,600</td>
268
					</tr>
269
					<tr>
270
						<td>Angelica</td>
271
						<td>Ramos</td>
272
						<td>Chief Executive Officer (CEO)</td>
273
						<td>London</td>
274
						<td>$1,200,000</td>
275
					</tr>
276
					<tr>
277
						<td>Gavin</td>
278
						<td>Joyce</td>
279
						<td>Developer</td>
280
						<td>Edinburgh</td>
281
						<td>$92,575</td>
282
					</tr>
283
					<tr>
284
						<td>Jennifer</td>
285
						<td>Chang</td>
286
						<td>Regional Director</td>
287
						<td>Singapore</td>
288
						<td>$357,650</td>
289
					</tr>
290
					<tr>
291
						<td>Brenden</td>
292
						<td>Wagner</td>
293
						<td>Software Engineer</td>
294
						<td>San Francisco</td>
295
						<td>$206,850</td>
296
					</tr>
297
					<tr>
298
						<td>Fiona</td>
299
						<td>Green</td>
300
						<td>Chief Operating Officer (COO)</td>
301
						<td>San Francisco</td>
302
						<td>$850,000</td>
303
					</tr>
304
					<tr>
305
						<td>Shou</td>
306
						<td>Itou</td>
307
						<td>Regional Marketing</td>
308
						<td>Tokyo</td>
309
						<td>$163,000</td>
310
					</tr>
311
					<tr>
312
						<td>Michelle</td>
313
						<td>House</td>
314
						<td>Integration Specialist</td>
315
						<td>Sidney</td>
316
						<td>$95,400</td>
317
					</tr>
318
					<tr>
319
						<td>Suki</td>
320
						<td>Burks</td>
321
						<td>Developer</td>
322
						<td>London</td>
323
						<td>$114,500</td>
324
					</tr>
325
					<tr>
326
						<td>Prescott</td>
327
						<td>Bartlett</td>
328
						<td>Technical Author</td>
329
						<td>London</td>
330
						<td>$145,000</td>
331
					</tr>
332
					<tr>
333
						<td>Gavin</td>
334
						<td>Cortez</td>
335
						<td>Team Leader</td>
336
						<td>San Francisco</td>
337
						<td>$235,500</td>
338
					</tr>
339
					<tr>
340
						<td>Martena</td>
341
						<td>Mccray</td>
342
						<td>Post-Sales support</td>
343
						<td>Edinburgh</td>
344
						<td>$324,050</td>
345
					</tr>
346
					<tr>
347
						<td>Unity</td>
348
						<td>Butler</td>
349
						<td>Marketing Designer</td>
350
						<td>San Francisco</td>
351
						<td>$85,675</td>
352
					</tr>
353
					<tr>
354
						<td>Howard</td>
355
						<td>Hatfield</td>
356
						<td>Office Manager</td>
357
						<td>San Francisco</td>
358
						<td>$164,500</td>
359
					</tr>
360
					<tr>
361
						<td>Hope</td>
362
						<td>Fuentes</td>
363
						<td>Secretary</td>
364
						<td>San Francisco</td>
365
						<td>$109,850</td>
366
					</tr>
367
					<tr>
368
						<td>Vivian</td>
369
						<td>Harrell</td>
370
						<td>Financial Controller</td>
371
						<td>San Francisco</td>
372
						<td>$452,500</td>
373
					</tr>
374
					<tr>
375
						<td>Timothy</td>
376
						<td>Mooney</td>
377
						<td>Office Manager</td>
378
						<td>London</td>
379
						<td>$136,200</td>
380
					</tr>
381
					<tr>
382
						<td>Jackson</td>
383
						<td>Bradshaw</td>
384
						<td>Director</td>
385
						<td>New York</td>
386
						<td>$645,750</td>
387
					</tr>
388
					<tr>
389
						<td>Olivia</td>
390
						<td>Liang</td>
391
						<td>Support Engineer</td>
392
						<td>Singapore</td>
393
						<td>$234,500</td>
394
					</tr>
395
					<tr>
396
						<td>Bruno</td>
397
						<td>Nash</td>
398
						<td>Software Engineer</td>
399
						<td>London</td>
400
						<td>$163,500</td>
401
					</tr>
402
					<tr>
403
						<td>Sakura</td>
404
						<td>Yamamoto</td>
405
						<td>Support Engineer</td>
406
						<td>Tokyo</td>
407
						<td>$139,575</td>
408
					</tr>
409
					<tr>
410
						<td>Thor</td>
411
						<td>Walton</td>
412
						<td>Developer</td>
413
						<td>New York</td>
414
						<td>$98,540</td>
415
					</tr>
416
					<tr>
417
						<td>Finn</td>
418
						<td>Camacho</td>
419
						<td>Support Engineer</td>
420
						<td>San Francisco</td>
421
						<td>$87,500</td>
422
					</tr>
423
					<tr>
424
						<td>Serge</td>
425
						<td>Baldwin</td>
426
						<td>Data Coordinator</td>
427
						<td>Singapore</td>
428
						<td>$138,575</td>
429
					</tr>
430
					<tr>
431
						<td>Zenaida</td>
432
						<td>Frank</td>
433
						<td>Software Engineer</td>
434
						<td>New York</td>
435
						<td>$125,250</td>
436
					</tr>
437
					<tr>
438
						<td>Zorita</td>
439
						<td>Serrano</td>
440
						<td>Software Engineer</td>
441
						<td>San Francisco</td>
442
						<td>$115,000</td>
443
					</tr>
444
					<tr>
445
						<td>Jennifer</td>
446
						<td>Acosta</td>
447
						<td>Junior Javascript Developer</td>
448
						<td>Edinburgh</td>
449
						<td>$75,650</td>
450
					</tr>
451
					<tr>
452
						<td>Cara</td>
453
						<td>Stevens</td>
454
						<td>Sales Assistant</td>
455
						<td>New York</td>
456
						<td>$145,600</td>
457
					</tr>
458
					<tr>
459
						<td>Hermione</td>
460
						<td>Butler</td>
461
						<td>Regional Director</td>
462
						<td>London</td>
463
						<td>$356,250</td>
464
					</tr>
465
					<tr>
466
						<td>Lael</td>
467
						<td>Greer</td>
468
						<td>Systems Administrator</td>
469
						<td>London</td>
470
						<td>$103,500</td>
471
					</tr>
472
					<tr>
473
						<td>Jonas</td>
474
						<td>Alexander</td>
475
						<td>Developer</td>
476
						<td>San Francisco</td>
477
						<td>$86,500</td>
478
					</tr>
479
					<tr>
480
						<td>Shad</td>
481
						<td>Decker</td>
482
						<td>Regional Director</td>
483
						<td>Edinburgh</td>
484
						<td>$183,000</td>
485
					</tr>
486
					<tr>
487
						<td>Michael</td>
488
						<td>Bruce</td>
489
						<td>Javascript Developer</td>
490
						<td>Singapore</td>
491
						<td>$183,000</td>
492
					</tr>
493
					<tr>
494
						<td>Donna</td>
495
						<td>Snider</td>
496
						<td>Customer Support</td>
497
						<td>New York</td>
498
						<td>$112,000</td>
499
					</tr>
500
				</tbody>
501
			</table>
502
 
503
			<ul class="tabs">
504
				<li class="active">Javascript</li>
505
				<li>HTML</li>
506
				<li>CSS</li>
507
				<li>Ajax</li>
508
				<li>Server-side script</li>
509
			</ul>
510
 
511
			<div class="tabs">
512
				<div class="js">
513
					<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
514
	$('#example').DataTable( {
515
		&quot;footerCallback&quot;: function ( row, data, start, end, display ) {
516
			var api = this.api(), data;
517
 
518
			// Remove the formatting to get integer data for summation
519
			var intVal = function ( i ) {
520
				return typeof i === 'string' ?
521
					i.replace(/[\$,]/g, '')*1 :
522
					typeof i === 'number' ?
523
						i : 0;
524
			};
525
 
526
			// Total over all pages
527
			total = api
528
				.column( 4 )
529
				.data()
530
				.reduce( function (a, b) {
531
					return intVal(a) + intVal(b);
532
				} );
533
 
534
			// Total over this page
535
			pageTotal = api
536
				.column( 4, { page: 'current'} )
537
				.data()
538
				.reduce( function (a, b) {
539
					return intVal(a) + intVal(b);
540
				}, 0 );
541
 
542
			// Update footer
543
			$( api.column( 4 ).footer() ).html(
544
				'$'+pageTotal +' ( $'+ total +' total)'
545
			);
546
		}
547
	} );
548
} );</code>
549
 
550
					<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
551
 
552
					<ul>
553
						<li><a href="//code.jquery.com/jquery-1.11.3.min.js">//code.jquery.com/jquery-1.11.3.min.js</a></li>
554
						<li><a href="../../media/js/jquery.dataTables.js">../../media/js/jquery.dataTables.js</a></li>
555
					</ul>
556
				</div>
557
 
558
				<div class="table">
559
					<p>The HTML shown below is the raw HTML table element, before it has been enhanced by DataTables:</p>
560
				</div>
561
 
562
				<div class="css">
563
					<div>
564
						<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
565
						additional CSS used is shown below:</p><code class="multiline language-css">th { white-space: nowrap; }</code>
566
					</div>
567
 
568
					<p>The following CSS library files are loaded for use in this example to provide the styling of the table:</p>
569
 
570
					<ul>
571
						<li><a href="../../media/css/jquery.dataTables.css">../../media/css/jquery.dataTables.css</a></li>
572
					</ul>
573
				</div>
574
 
575
				<div class="ajax">
576
					<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
577
					loaded.</p>
578
				</div>
579
 
580
				<div class="php">
581
					<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
582
					processing scripts can be written in any language, using <a href="//datatables.net/manual/server-side">the protocol described in the DataTables
583
					documentation</a>.</p>
584
				</div>
585
			</div>
586
		</section>
587
	</div>
588
 
589
	<section>
590
		<div class="footer">
591
			<div class="gradient"></div>
592
 
593
			<div class="liner">
594
				<h2>Other examples</h2>
595
 
596
				<div class="toc">
597
					<div class="toc-group">
598
						<h3><a href="../basic_init/index.html">Basic initialisation</a></h3>
599
						<ul class="toc">
600
							<li><a href="../basic_init/zero_configuration.html">Zero configuration</a></li>
601
							<li><a href="../basic_init/filter_only.html">Feature enable / disable</a></li>
602
							<li><a href="../basic_init/table_sorting.html">Default ordering (sorting)</a></li>
603
							<li><a href="../basic_init/multi_col_sort.html">Multi-column ordering</a></li>
604
							<li><a href="../basic_init/multiple_tables.html">Multiple tables</a></li>
605
							<li><a href="../basic_init/hidden_columns.html">Hidden columns</a></li>
606
							<li><a href="../basic_init/complex_header.html">Complex headers (rowspan and colspan)</a></li>
607
							<li><a href="../basic_init/dom.html">DOM positioning</a></li>
608
							<li><a href="../basic_init/flexible_width.html">Flexible table width</a></li>
609
							<li><a href="../basic_init/state_save.html">State saving</a></li>
610
							<li><a href="../basic_init/alt_pagination.html">Alternative pagination</a></li>
611
							<li><a href="../basic_init/scroll_y.html">Scroll - vertical</a></li>
612
							<li><a href="../basic_init/scroll_y_dynamic.html">Scroll - vertical, dynamic height</a></li>
613
							<li><a href="../basic_init/scroll_x.html">Scroll - horizontal</a></li>
614
							<li><a href="../basic_init/scroll_xy.html">Scroll - horizontal and vertical</a></li>
615
							<li><a href="../basic_init/comma-decimal.html">Language - Comma decimal place</a></li>
616
							<li><a href="../basic_init/language.html">Language options</a></li>
617
						</ul>
618
					</div>
619
 
620
					<div class="toc-group">
621
						<h3><a href="./index.html">Advanced initialisation</a></h3>
622
						<ul class="toc active">
623
							<li><a href="./events_live.html">DOM / jQuery events</a></li>
624
							<li><a href="./dt_events.html">DataTables events</a></li>
625
							<li><a href="./column_render.html">Column rendering</a></li>
626
							<li><a href="./length_menu.html">Page length options</a></li>
627
							<li><a href="./dom_multiple_elements.html">Multiple table control elements</a></li>
628
							<li><a href="./complex_header.html">Complex headers with column visibility</a></li>
629
							<li><a href="./object_dom_read.html">Read HTML to data objects</a></li>
630
							<li><a href="./html5-data-attributes.html">HTML5 data-* attributes - cell data</a></li>
631
							<li><a href="./html5-data-options.html">HTML5 data-* attributes - table options</a></li>
632
							<li><a href="./language_file.html">Language file</a></li>
633
							<li><a href="./defaults.html">Setting defaults</a></li>
634
							<li><a href="./row_callback.html">Row created callback</a></li>
635
							<li><a href="./row_grouping.html">Row grouping</a></li>
636
							<li class="active"><a href="./footer_callback.html">Footer callback</a></li>
637
							<li><a href="./dom_toolbar.html">Custom toolbar elements</a></li>
638
							<li><a href="./sort_direction_control.html">Order direction sequence control</a></li>
639
						</ul>
640
					</div>
641
 
642
					<div class="toc-group">
643
						<h3><a href="../styling/index.html">Styling</a></h3>
644
						<ul class="toc">
645
							<li><a href="../styling/display.html">Base style</a></li>
646
							<li><a href="../styling/no-classes.html">Base style - no styling classes</a></li>
647
							<li><a href="../styling/cell-border.html">Base style - cell borders</a></li>
648
							<li><a href="../styling/compact.html">Base style - compact</a></li>
649
							<li><a href="../styling/hover.html">Base style - hover</a></li>
650
							<li><a href="../styling/order-column.html">Base style - order-column</a></li>
651
							<li><a href="../styling/row-border.html">Base style - row borders</a></li>
652
							<li><a href="../styling/stripe.html">Base style - stripe</a></li>
653
							<li><a href="../styling/bootstrap.html">Bootstrap</a></li>
654
							<li><a href="../styling/foundation.html">Foundation</a></li>
655
							<li><a href="../styling/jqueryUI.html">jQuery UI ThemeRoller</a></li>
656
						</ul>
657
					</div>
658
 
659
					<div class="toc-group">
660
						<h3><a href="../data_sources/index.html">Data sources</a></h3>
661
						<ul class="toc">
662
							<li><a href="../data_sources/dom.html">HTML (DOM) sourced data</a></li>
663
							<li><a href="../data_sources/ajax.html">Ajax sourced data</a></li>
664
							<li><a href="../data_sources/js_array.html">Javascript sourced data</a></li>
665
							<li><a href="../data_sources/server_side.html">Server-side processing</a></li>
666
						</ul>
667
					</div>
668
 
669
					<div class="toc-group">
670
						<h3><a href="../api/index.html">API</a></h3>
671
						<ul class="toc">
672
							<li><a href="../api/add_row.html">Add rows</a></li>
673
							<li><a href="../api/multi_filter.html">Individual column searching (text inputs)</a></li>
674
							<li><a href="../api/multi_filter_select.html">Individual column searching (select inputs)</a></li>
675
							<li><a href="../api/highlight.html">Highlighting rows and columns</a></li>
676
							<li><a href="../api/row_details.html">Child rows (show extra / detailed information)</a></li>
677
							<li><a href="../api/select_row.html">Row selection (multiple rows)</a></li>
678
							<li><a href="../api/select_single_row.html">Row selection and deletion (single row)</a></li>
679
							<li><a href="../api/form.html">Form inputs</a></li>
680
							<li><a href="../api/counter_columns.html">Index column</a></li>
681
							<li><a href="../api/show_hide.html">Show / hide columns dynamically</a></li>
682
							<li><a href="../api/api_in_init.html">Using API in callbacks</a></li>
683
							<li><a href="../api/tabs_and_scrolling.html">Scrolling and Bootstrap tabs</a></li>
684
							<li><a href="../api/regex.html">Search API (regular expressions)</a></li>
685
						</ul>
686
					</div>
687
 
688
					<div class="toc-group">
689
						<h3><a href="../ajax/index.html">Ajax</a></h3>
690
						<ul class="toc">
691
							<li><a href="../ajax/simple.html">Ajax data source (arrays)</a></li>
692
							<li><a href="../ajax/objects.html">Ajax data source (objects)</a></li>
693
							<li><a href="../ajax/deep.html">Nested object data (objects)</a></li>
694
							<li><a href="../ajax/objects_subarrays.html">Nested object data (arrays)</a></li>
695
							<li><a href="../ajax/orthogonal-data.html">Orthogonal data</a></li>
696
							<li><a href="../ajax/null_data_source.html">Generated content for a column</a></li>
697
							<li><a href="../ajax/custom_data_property.html">Custom data source property</a></li>
698
							<li><a href="../ajax/custom_data_flat.html">Flat array data source</a></li>
699
							<li><a href="../ajax/defer_render.html">Deferred rendering for speed</a></li>
700
						</ul>
701
					</div>
702
 
703
					<div class="toc-group">
704
						<h3><a href="../server_side/index.html">Server-side</a></h3>
705
						<ul class="toc">
706
							<li><a href="../server_side/simple.html">Server-side processing</a></li>
707
							<li><a href="../server_side/custom_vars.html">Custom HTTP variables</a></li>
708
							<li><a href="../server_side/post.html">POST data</a></li>
709
							<li><a href="../server_side/ids.html">Automatic addition of row ID attributes</a></li>
710
							<li><a href="../server_side/object_data.html">Object data source</a></li>
711
							<li><a href="../server_side/row_details.html">Row details</a></li>
712
							<li><a href="../server_side/select_rows.html">Row selection</a></li>
713
							<li><a href="../server_side/jsonp.html">JSONP data source for remote domains</a></li>
714
							<li><a href="../server_side/defer_loading.html">Deferred loading of data</a></li>
715
							<li><a href="../server_side/pipeline.html">Pipelining data to reduce Ajax calls for paging</a></li>
716
						</ul>
717
					</div>
718
 
719
					<div class="toc-group">
720
						<h3><a href="../plug-ins/index.html">Plug-ins</a></h3>
721
						<ul class="toc">
722
							<li><a href="../plug-ins/api.html">API plug-in methods</a></li>
723
							<li><a href="../plug-ins/sorting_auto.html">Ordering plug-ins (with type detection)</a></li>
724
							<li><a href="../plug-ins/sorting_manual.html">Ordering plug-ins (no type detection)</a></li>
725
							<li><a href="../plug-ins/range_filtering.html">Custom filtering - range search</a></li>
726
							<li><a href="../plug-ins/dom_sort.html">Live DOM ordering</a></li>
727
						</ul>
728
					</div>
729
				</div>
730
 
731
				<div class="epilogue">
732
					<p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full information about its API properties and methods.<br>
733
					Additionally, there are a wide range of <a href="http://www.datatables.net/extensions">extensions</a> and <a href=
734
					"http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of DataTables.</p>
735
 
736
					<p class="copyright">DataTables designed and created by <a href="http://www.sprymedia.co.uk">SpryMedia Ltd</a> &#169; 2007-2015<br>
737
					DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
738
				</div>
739
			</div>
740
		</div>
741
	</section>
742
</body>
743
</html>