Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

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