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