Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

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