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