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