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