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>Buttons example - Keyboard activation</title>
9
	<link rel="stylesheet" type="text/css" href="../../../../media/css/jquery.dataTables.css">
10
	<link rel="stylesheet" type="text/css" href="../../css/buttons.dataTables.css">
11
	<link rel="stylesheet" type="text/css" href="../../../../examples/resources/syntax/shCore.css">
12
	<link rel="stylesheet" type="text/css" href="../../../../examples/resources/demo.css">
13
	<style type="text/css" class="init">
14
 
15
	</style>
16
	<script type="text/javascript" language="javascript" src="//code.jquery.com/jquery-1.11.3.min.js"></script>
17
	<script type="text/javascript" language="javascript" src="../../../../media/js/jquery.dataTables.js"></script>
18
	<script type="text/javascript" language="javascript" src="../../js/dataTables.buttons.js"></script>
19
	<script type="text/javascript" language="javascript" src="../../../../examples/resources/syntax/shCore.js"></script>
20
	<script type="text/javascript" language="javascript" src="../../../../examples/resources/demo.js"></script>
21
	<script type="text/javascript" language="javascript" class="init">
22
 
23
 
24
 
25
$(document).ready(function() {
26
	$('#example').DataTable( {
27
		dom: 'Bfrtip',
28
		buttons: [
29
			{
30
				text: 'Button <u>1</u>',
31
				key: '1',
32
				action: function ( e, dt, node, config ) {
33
					alert( 'Button 1 activated' );
34
				}
35
			},
36
			{
37
				text: 'Button <u><i>alt</i> 2</u>',
38
				key: {
39
					altKey: true,
40
					key: '2'
41
				},
42
				action: function ( e, dt, node, config ) {
43
					alert( 'Button 2 activated' );
44
				}
45
			}
46
		]
47
	} );
48
} );
49
 
50
 
51
 
52
	</script>
53
</head>
54
 
55
<body class="dt-example">
56
	<div class="container">
57
		<section>
58
			<h1>Buttons example <span>Keyboard activation</span></h1>
59
 
60
			<div class="info">
61
				<p>Keyboard navigation is essential for fast navigation of a table operations and also for good accessibility. Buttons provides the ability to give each button a
62
				key binding - i.e. a key combination that when pressed will activate the button's action.</p>
63
 
64
				<p>The key binding can be given as a single character if you wish to listen for an unmodified key press, or as an object if you wish it to only be activated when a
65
				modifier key such as shift, alt, etc, is pressed.</p>
66
 
67
				<p>Only when there is no element on the page that has focus will Buttons act on a key press. This means that if you search for (for example) 1 in the DataTables
68
				search box, it will not activate <em>Button 1</em> in this example. Having said that, adding a modifier key, such as shift or alt can often be useful to prevent
69
				accidental triggering of a button.</p>
70
 
71
				<p>This example shows two buttons; the first will be activated if <code>1</code> is pressed on the keyboard. The second requires <code>alt + 2</code> to be
72
				pressed.</p>
73
			</div>
74
 
75
			<table id="example" class="display" cellspacing="0" width="100%">
76
				<thead>
77
					<tr>
78
						<th>Name</th>
79
						<th>Position</th>
80
						<th>Office</th>
81
						<th>Age</th>
82
						<th>Start date</th>
83
						<th>Salary</th>
84
					</tr>
85
				</thead>
86
 
87
				<tfoot>
88
					<tr>
89
						<th>Name</th>
90
						<th>Position</th>
91
						<th>Office</th>
92
						<th>Age</th>
93
						<th>Start date</th>
94
						<th>Salary</th>
95
					</tr>
96
				</tfoot>
97
 
98
				<tbody>
99
					<tr>
100
						<td>Tiger Nixon</td>
101
						<td>System Architect</td>
102
						<td>Edinburgh</td>
103
						<td>61</td>
104
						<td>2011/04/25</td>
105
						<td>$320,800</td>
106
					</tr>
107
					<tr>
108
						<td>Garrett Winters</td>
109
						<td>Accountant</td>
110
						<td>Tokyo</td>
111
						<td>63</td>
112
						<td>2011/07/25</td>
113
						<td>$170,750</td>
114
					</tr>
115
					<tr>
116
						<td>Ashton Cox</td>
117
						<td>Junior Technical Author</td>
118
						<td>San Francisco</td>
119
						<td>66</td>
120
						<td>2009/01/12</td>
121
						<td>$86,000</td>
122
					</tr>
123
					<tr>
124
						<td>Cedric Kelly</td>
125
						<td>Senior Javascript Developer</td>
126
						<td>Edinburgh</td>
127
						<td>22</td>
128
						<td>2012/03/29</td>
129
						<td>$433,060</td>
130
					</tr>
131
					<tr>
132
						<td>Airi Satou</td>
133
						<td>Accountant</td>
134
						<td>Tokyo</td>
135
						<td>33</td>
136
						<td>2008/11/28</td>
137
						<td>$162,700</td>
138
					</tr>
139
					<tr>
140
						<td>Brielle Williamson</td>
141
						<td>Integration Specialist</td>
142
						<td>New York</td>
143
						<td>61</td>
144
						<td>2012/12/02</td>
145
						<td>$372,000</td>
146
					</tr>
147
					<tr>
148
						<td>Herrod Chandler</td>
149
						<td>Sales Assistant</td>
150
						<td>San Francisco</td>
151
						<td>59</td>
152
						<td>2012/08/06</td>
153
						<td>$137,500</td>
154
					</tr>
155
					<tr>
156
						<td>Rhona Davidson</td>
157
						<td>Integration Specialist</td>
158
						<td>Tokyo</td>
159
						<td>55</td>
160
						<td>2010/10/14</td>
161
						<td>$327,900</td>
162
					</tr>
163
					<tr>
164
						<td>Colleen Hurst</td>
165
						<td>Javascript Developer</td>
166
						<td>San Francisco</td>
167
						<td>39</td>
168
						<td>2009/09/15</td>
169
						<td>$205,500</td>
170
					</tr>
171
					<tr>
172
						<td>Sonya Frost</td>
173
						<td>Software Engineer</td>
174
						<td>Edinburgh</td>
175
						<td>23</td>
176
						<td>2008/12/13</td>
177
						<td>$103,600</td>
178
					</tr>
179
					<tr>
180
						<td>Jena Gaines</td>
181
						<td>Office Manager</td>
182
						<td>London</td>
183
						<td>30</td>
184
						<td>2008/12/19</td>
185
						<td>$90,560</td>
186
					</tr>
187
					<tr>
188
						<td>Quinn Flynn</td>
189
						<td>Support Lead</td>
190
						<td>Edinburgh</td>
191
						<td>22</td>
192
						<td>2013/03/03</td>
193
						<td>$342,000</td>
194
					</tr>
195
					<tr>
196
						<td>Charde Marshall</td>
197
						<td>Regional Director</td>
198
						<td>San Francisco</td>
199
						<td>36</td>
200
						<td>2008/10/16</td>
201
						<td>$470,600</td>
202
					</tr>
203
					<tr>
204
						<td>Haley Kennedy</td>
205
						<td>Senior Marketing Designer</td>
206
						<td>London</td>
207
						<td>43</td>
208
						<td>2012/12/18</td>
209
						<td>$313,500</td>
210
					</tr>
211
					<tr>
212
						<td>Tatyana Fitzpatrick</td>
213
						<td>Regional Director</td>
214
						<td>London</td>
215
						<td>19</td>
216
						<td>2010/03/17</td>
217
						<td>$385,750</td>
218
					</tr>
219
					<tr>
220
						<td>Michael Silva</td>
221
						<td>Marketing Designer</td>
222
						<td>London</td>
223
						<td>66</td>
224
						<td>2012/11/27</td>
225
						<td>$198,500</td>
226
					</tr>
227
					<tr>
228
						<td>Paul Byrd</td>
229
						<td>Chief Financial Officer (CFO)</td>
230
						<td>New York</td>
231
						<td>64</td>
232
						<td>2010/06/09</td>
233
						<td>$725,000</td>
234
					</tr>
235
					<tr>
236
						<td>Gloria Little</td>
237
						<td>Systems Administrator</td>
238
						<td>New York</td>
239
						<td>59</td>
240
						<td>2009/04/10</td>
241
						<td>$237,500</td>
242
					</tr>
243
					<tr>
244
						<td>Bradley Greer</td>
245
						<td>Software Engineer</td>
246
						<td>London</td>
247
						<td>41</td>
248
						<td>2012/10/13</td>
249
						<td>$132,000</td>
250
					</tr>
251
					<tr>
252
						<td>Dai Rios</td>
253
						<td>Personnel Lead</td>
254
						<td>Edinburgh</td>
255
						<td>35</td>
256
						<td>2012/09/26</td>
257
						<td>$217,500</td>
258
					</tr>
259
					<tr>
260
						<td>Jenette Caldwell</td>
261
						<td>Development Lead</td>
262
						<td>New York</td>
263
						<td>30</td>
264
						<td>2011/09/03</td>
265
						<td>$345,000</td>
266
					</tr>
267
					<tr>
268
						<td>Yuri Berry</td>
269
						<td>Chief Marketing Officer (CMO)</td>
270
						<td>New York</td>
271
						<td>40</td>
272
						<td>2009/06/25</td>
273
						<td>$675,000</td>
274
					</tr>
275
					<tr>
276
						<td>Caesar Vance</td>
277
						<td>Pre-Sales Support</td>
278
						<td>New York</td>
279
						<td>21</td>
280
						<td>2011/12/12</td>
281
						<td>$106,450</td>
282
					</tr>
283
					<tr>
284
						<td>Doris Wilder</td>
285
						<td>Sales Assistant</td>
286
						<td>Sidney</td>
287
						<td>23</td>
288
						<td>2010/09/20</td>
289
						<td>$85,600</td>
290
					</tr>
291
					<tr>
292
						<td>Angelica Ramos</td>
293
						<td>Chief Executive Officer (CEO)</td>
294
						<td>London</td>
295
						<td>47</td>
296
						<td>2009/10/09</td>
297
						<td>$1,200,000</td>
298
					</tr>
299
					<tr>
300
						<td>Gavin Joyce</td>
301
						<td>Developer</td>
302
						<td>Edinburgh</td>
303
						<td>42</td>
304
						<td>2010/12/22</td>
305
						<td>$92,575</td>
306
					</tr>
307
					<tr>
308
						<td>Jennifer Chang</td>
309
						<td>Regional Director</td>
310
						<td>Singapore</td>
311
						<td>28</td>
312
						<td>2010/11/14</td>
313
						<td>$357,650</td>
314
					</tr>
315
					<tr>
316
						<td>Brenden Wagner</td>
317
						<td>Software Engineer</td>
318
						<td>San Francisco</td>
319
						<td>28</td>
320
						<td>2011/06/07</td>
321
						<td>$206,850</td>
322
					</tr>
323
					<tr>
324
						<td>Fiona Green</td>
325
						<td>Chief Operating Officer (COO)</td>
326
						<td>San Francisco</td>
327
						<td>48</td>
328
						<td>2010/03/11</td>
329
						<td>$850,000</td>
330
					</tr>
331
					<tr>
332
						<td>Shou Itou</td>
333
						<td>Regional Marketing</td>
334
						<td>Tokyo</td>
335
						<td>20</td>
336
						<td>2011/08/14</td>
337
						<td>$163,000</td>
338
					</tr>
339
					<tr>
340
						<td>Michelle House</td>
341
						<td>Integration Specialist</td>
342
						<td>Sidney</td>
343
						<td>37</td>
344
						<td>2011/06/02</td>
345
						<td>$95,400</td>
346
					</tr>
347
					<tr>
348
						<td>Suki Burks</td>
349
						<td>Developer</td>
350
						<td>London</td>
351
						<td>53</td>
352
						<td>2009/10/22</td>
353
						<td>$114,500</td>
354
					</tr>
355
					<tr>
356
						<td>Prescott Bartlett</td>
357
						<td>Technical Author</td>
358
						<td>London</td>
359
						<td>27</td>
360
						<td>2011/05/07</td>
361
						<td>$145,000</td>
362
					</tr>
363
					<tr>
364
						<td>Gavin Cortez</td>
365
						<td>Team Leader</td>
366
						<td>San Francisco</td>
367
						<td>22</td>
368
						<td>2008/10/26</td>
369
						<td>$235,500</td>
370
					</tr>
371
					<tr>
372
						<td>Martena Mccray</td>
373
						<td>Post-Sales support</td>
374
						<td>Edinburgh</td>
375
						<td>46</td>
376
						<td>2011/03/09</td>
377
						<td>$324,050</td>
378
					</tr>
379
					<tr>
380
						<td>Unity Butler</td>
381
						<td>Marketing Designer</td>
382
						<td>San Francisco</td>
383
						<td>47</td>
384
						<td>2009/12/09</td>
385
						<td>$85,675</td>
386
					</tr>
387
					<tr>
388
						<td>Howard Hatfield</td>
389
						<td>Office Manager</td>
390
						<td>San Francisco</td>
391
						<td>51</td>
392
						<td>2008/12/16</td>
393
						<td>$164,500</td>
394
					</tr>
395
					<tr>
396
						<td>Hope Fuentes</td>
397
						<td>Secretary</td>
398
						<td>San Francisco</td>
399
						<td>41</td>
400
						<td>2010/02/12</td>
401
						<td>$109,850</td>
402
					</tr>
403
					<tr>
404
						<td>Vivian Harrell</td>
405
						<td>Financial Controller</td>
406
						<td>San Francisco</td>
407
						<td>62</td>
408
						<td>2009/02/14</td>
409
						<td>$452,500</td>
410
					</tr>
411
					<tr>
412
						<td>Timothy Mooney</td>
413
						<td>Office Manager</td>
414
						<td>London</td>
415
						<td>37</td>
416
						<td>2008/12/11</td>
417
						<td>$136,200</td>
418
					</tr>
419
					<tr>
420
						<td>Jackson Bradshaw</td>
421
						<td>Director</td>
422
						<td>New York</td>
423
						<td>65</td>
424
						<td>2008/09/26</td>
425
						<td>$645,750</td>
426
					</tr>
427
					<tr>
428
						<td>Olivia Liang</td>
429
						<td>Support Engineer</td>
430
						<td>Singapore</td>
431
						<td>64</td>
432
						<td>2011/02/03</td>
433
						<td>$234,500</td>
434
					</tr>
435
					<tr>
436
						<td>Bruno Nash</td>
437
						<td>Software Engineer</td>
438
						<td>London</td>
439
						<td>38</td>
440
						<td>2011/05/03</td>
441
						<td>$163,500</td>
442
					</tr>
443
					<tr>
444
						<td>Sakura Yamamoto</td>
445
						<td>Support Engineer</td>
446
						<td>Tokyo</td>
447
						<td>37</td>
448
						<td>2009/08/19</td>
449
						<td>$139,575</td>
450
					</tr>
451
					<tr>
452
						<td>Thor Walton</td>
453
						<td>Developer</td>
454
						<td>New York</td>
455
						<td>61</td>
456
						<td>2013/08/11</td>
457
						<td>$98,540</td>
458
					</tr>
459
					<tr>
460
						<td>Finn Camacho</td>
461
						<td>Support Engineer</td>
462
						<td>San Francisco</td>
463
						<td>47</td>
464
						<td>2009/07/07</td>
465
						<td>$87,500</td>
466
					</tr>
467
					<tr>
468
						<td>Serge Baldwin</td>
469
						<td>Data Coordinator</td>
470
						<td>Singapore</td>
471
						<td>64</td>
472
						<td>2012/04/09</td>
473
						<td>$138,575</td>
474
					</tr>
475
					<tr>
476
						<td>Zenaida Frank</td>
477
						<td>Software Engineer</td>
478
						<td>New York</td>
479
						<td>63</td>
480
						<td>2010/01/04</td>
481
						<td>$125,250</td>
482
					</tr>
483
					<tr>
484
						<td>Zorita Serrano</td>
485
						<td>Software Engineer</td>
486
						<td>San Francisco</td>
487
						<td>56</td>
488
						<td>2012/06/01</td>
489
						<td>$115,000</td>
490
					</tr>
491
					<tr>
492
						<td>Jennifer Acosta</td>
493
						<td>Junior Javascript Developer</td>
494
						<td>Edinburgh</td>
495
						<td>43</td>
496
						<td>2013/02/01</td>
497
						<td>$75,650</td>
498
					</tr>
499
					<tr>
500
						<td>Cara Stevens</td>
501
						<td>Sales Assistant</td>
502
						<td>New York</td>
503
						<td>46</td>
504
						<td>2011/12/06</td>
505
						<td>$145,600</td>
506
					</tr>
507
					<tr>
508
						<td>Hermione Butler</td>
509
						<td>Regional Director</td>
510
						<td>London</td>
511
						<td>47</td>
512
						<td>2011/03/21</td>
513
						<td>$356,250</td>
514
					</tr>
515
					<tr>
516
						<td>Lael Greer</td>
517
						<td>Systems Administrator</td>
518
						<td>London</td>
519
						<td>21</td>
520
						<td>2009/02/27</td>
521
						<td>$103,500</td>
522
					</tr>
523
					<tr>
524
						<td>Jonas Alexander</td>
525
						<td>Developer</td>
526
						<td>San Francisco</td>
527
						<td>30</td>
528
						<td>2010/07/14</td>
529
						<td>$86,500</td>
530
					</tr>
531
					<tr>
532
						<td>Shad Decker</td>
533
						<td>Regional Director</td>
534
						<td>Edinburgh</td>
535
						<td>51</td>
536
						<td>2008/11/13</td>
537
						<td>$183,000</td>
538
					</tr>
539
					<tr>
540
						<td>Michael Bruce</td>
541
						<td>Javascript Developer</td>
542
						<td>Singapore</td>
543
						<td>29</td>
544
						<td>2011/06/27</td>
545
						<td>$183,000</td>
546
					</tr>
547
					<tr>
548
						<td>Donna Snider</td>
549
						<td>Customer Support</td>
550
						<td>New York</td>
551
						<td>27</td>
552
						<td>2011/01/25</td>
553
						<td>$112,000</td>
554
					</tr>
555
				</tbody>
556
			</table>
557
 
558
			<ul class="tabs">
559
				<li class="active">Javascript</li>
560
				<li>HTML</li>
561
				<li>CSS</li>
562
				<li>Ajax</li>
563
				<li>Server-side script</li>
564
			</ul>
565
 
566
			<div class="tabs">
567
				<div class="js">
568
					<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
569
	$('#example').DataTable( {
570
		dom: 'Bfrtip',
571
		buttons: [
572
			{
573
				text: 'Button &lt;u&gt;1&lt;/u&gt;',
574
				key: '1',
575
				action: function ( e, dt, node, config ) {
576
					alert( 'Button 1 activated' );
577
				}
578
			},
579
			{
580
				text: 'Button &lt;u&gt;&lt;i&gt;alt&lt;/i&gt; 2&lt;/u&gt;',
581
				key: {
582
					altKey: true,
583
					key: '2'
584
				},
585
				action: function ( e, dt, node, config ) {
586
					alert( 'Button 2 activated' );
587
				}
588
			}
589
		]
590
	} );
591
} );</code>
592
 
593
					<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
594
 
595
					<ul>
596
						<li><a href="//code.jquery.com/jquery-1.11.3.min.js">//code.jquery.com/jquery-1.11.3.min.js</a></li>
597
						<li><a href="../../../../media/js/jquery.dataTables.js">../../../../media/js/jquery.dataTables.js</a></li>
598
						<li><a href="../../js/dataTables.buttons.js">../../js/dataTables.buttons.js</a></li>
599
					</ul>
600
				</div>
601
 
602
				<div class="table">
603
					<p>The HTML shown below is the raw HTML table element, before it has been enhanced by DataTables:</p>
604
				</div>
605
 
606
				<div class="css">
607
					<div>
608
						<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
609
						additional CSS used is shown below:</p><code class="multiline language-css"></code>
610
					</div>
611
 
612
					<p>The following CSS library files are loaded for use in this example to provide the styling of the table:</p>
613
 
614
					<ul>
615
						<li><a href="../../../../media/css/jquery.dataTables.css">../../../../media/css/jquery.dataTables.css</a></li>
616
						<li><a href="../../css/buttons.dataTables.css">../../css/buttons.dataTables.css</a></li>
617
					</ul>
618
				</div>
619
 
620
				<div class="ajax">
621
					<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
622
					loaded.</p>
623
				</div>
624
 
625
				<div class="php">
626
					<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
627
					processing scripts can be written in any language, using <a href="//datatables.net/manual/server-side">the protocol described in the DataTables
628
					documentation</a>.</p>
629
				</div>
630
			</div>
631
		</section>
632
	</div>
633
 
634
	<section>
635
		<div class="footer">
636
			<div class="gradient"></div>
637
 
638
			<div class="liner">
639
				<h2>Other examples</h2>
640
 
641
				<div class="toc">
642
					<div class="toc-group">
643
						<h3><a href="../column_visibility/index.html">Column Visibility</a></h3>
644
						<ul class="toc">
645
							<li><a href="../column_visibility/simple.html">Basic column visibility</a></li>
646
							<li><a href="../column_visibility/layout.html">Multi-column layout</a></li>
647
							<li><a href="../column_visibility/text.html">Internationalisation</a></li>
648
							<li><a href="../column_visibility/restore.html">Restore column visibility</a></li>
649
							<li><a href="../column_visibility/columns.html">Select columns</a></li>
650
							<li><a href="../column_visibility/columnsToggle.html">Visibility toggle buttons</a></li>
651
							<li><a href="../column_visibility/columnGroups.html">Column groups</a></li>
652
						</ul>
653
					</div>
654
 
655
					<div class="toc-group">
656
						<h3><a href="../flash/index.html">Flash</a></h3>
657
						<ul class="toc">
658
							<li><a href="../flash/simple.html">Flash export buttons</a></li>
659
							<li><a href="../flash/tsv.html">Tab separated values</a></li>
660
							<li><a href="../flash/filename.html">File name</a></li>
661
							<li><a href="../flash/copyi18n.html">Copy button internationalisation</a></li>
662
							<li><a href="../flash/pdfMessage.html">PDF message</a></li>
663
							<li><a href="../flash/pdfPage.html">Page size and orientation</a></li>
664
							<li><a href="../flash/hidden.html">Hidden initialisation</a></li>
665
							<li><a href="../flash/swfPath.html">SWF file location</a></li>
666
						</ul>
667
					</div>
668
 
669
					<div class="toc-group">
670
						<h3><a href="../html5/index.html">Html5</a></h3>
671
						<ul class="toc">
672
							<li><a href="../html5/simple.html">HTML5 export buttons</a></li>
673
							<li><a href="../html5/tsv.html">Tab separated values</a></li>
674
							<li><a href="../html5/filename.html">File name</a></li>
675
							<li><a href="../html5/copyi18n.html">Copy button internationalisation</a></li>
676
							<li><a href="../html5/pdfMessage.html">PDF message</a></li>
677
							<li><a href="../html5/pdfPage.html">PDF page size and orientation</a></li>
678
							<li><a href="../html5/pdfImage.html">PDF with image</a></li>
679
							<li><a href="../html5/pdfOpen.html">PDF - open in new window</a></li>
680
							<li><a href="../html5/columns.html">Column selectors</a></li>
681
						</ul>
682
					</div>
683
 
684
					<div class="toc-group">
685
						<h3><a href="./index.html">Initialisation</a></h3>
686
						<ul class="toc active">
687
							<li><a href="./simple.html">Basic initialisation</a></li>
688
							<li><a href="./export.html">File export</a></li>
689
							<li><a href="./custom.html">Custom button</a></li>
690
							<li><a href="./className.html">Class names</a></li>
691
							<li class="active"><a href="./keys.html">Keyboard activation</a></li>
692
							<li><a href="./collections.html">Collections</a></li>
693
							<li><a href="./plugins.html">Plug-ins</a></li>
694
							<li><a href="./new.html">`new` initialisation</a></li>
695
							<li><a href="./multiple.html">Multiple button groups</a></li>
696
						</ul>
697
					</div>
698
 
699
					<div class="toc-group">
700
						<h3><a href="../print/index.html">Print</a></h3>
701
						<ul class="toc">
702
							<li><a href="../print/simple.html">Print button</a></li>
703
							<li><a href="../print/message.html">Custom message</a></li>
704
							<li><a href="../print/columns.html">Export options - column selector</a></li>
705
							<li><a href="../print/select.html">Export options - row selector</a></li>
706
							<li><a href="../print/autoPrint.html">Disable auto print</a></li>
707
							<li><a href="../print/customisation.html">Customisation of the print view window</a></li>
708
						</ul>
709
					</div>
710
 
711
					<div class="toc-group">
712
						<h3><a href="../styling/index.html">Styling</a></h3>
713
						<ul class="toc">
714
							<li><a href="../styling/bootstrap.html">Bootstrap styling</a></li>
715
							<li><a href="../styling/foundation.html">Foundation styling</a></li>
716
							<li><a href="../styling/jqueryui.html">jQuery UI styling</a></li>
717
						</ul>
718
					</div>
719
 
720
					<div class="toc-group">
721
						<h3><a href="../api/index.html">API</a></h3>
722
						<ul class="toc">
723
							<li><a href="../api/enable.html">Enable / disable</a></li>
724
							<li><a href="../api/text.html">Dynamic text</a></li>
725
							<li><a href="../api/addRemove.html">Adding and removing buttons dynamically</a></li>
726
							<li><a href="../api/group.html">Group selection</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>