Subversion-Projekte lars-tiefland.marine-sales.de

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
2 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>Responsive example - Ajax data</title>
9
	<link rel="stylesheet" type="text/css" href="../../../../media/css/jquery.dataTables.css">
10
	<link rel="stylesheet" type="text/css" href="../../css/dataTables.responsive.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
	div.container { max-width: 1200px }
16
 
17
	</style>
18
	<script type="text/javascript" language="javascript" src="../../../../media/js/jquery.js"></script>
19
	<script type="text/javascript" language="javascript" src="../../../../media/js/jquery.dataTables.js"></script>
20
	<script type="text/javascript" language="javascript" src="../../js/dataTables.responsive.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
	$('#example').DataTable( {
29
		"ajax": "../../../../examples/ajax/data/objects.txt",
30
		"columns": [
31
			{ "data": "name" },
32
			{ "data": "position" },
33
			{ "data": "office" },
34
			{ "data": "extn" },
35
			{ "data": "start_date" },
36
			{ "data": "salary" }
37
		]
38
	} );
39
} );
40
 
41
 
42
 
43
	</script>
44
</head>
45
 
46
<body class="dt-example">
47
	<div class="container">
48
		<section>
49
			<h1>Responsive example <span>Ajax data</span></h1>
50
 
51
			<div class="info">
52
				<p>This example shows the Responsive extension working with <a href="//datatables.net/manual/data">Ajax sourced data</a> in the DataTable. Note that no special
53
				initialisation is required. Responsive is enabled by adding the <code class="string" title="String">responsive</code> class to the <code class="tag" title=
54
				"HTML tag">table</code> element.</p>
55
			</div>
56
 
57
			<table id="example" class="display responsive nowrap" cellspacing="0" width="100%">
58
				<thead>
59
					<tr>
60
						<th>Name</th>
61
						<th>Position</th>
62
						<th>Office</th>
63
						<th>Extn.</th>
64
						<th>Start date</th>
65
						<th>Salary</th>
66
					</tr>
67
				</thead>
68
 
69
				<tfoot>
70
					<tr>
71
						<th>Name</th>
72
						<th>Position</th>
73
						<th>Office</th>
74
						<th>Extn.</th>
75
						<th>Start date</th>
76
						<th>Salary</th>
77
					</tr>
78
				</tfoot>
79
			</table>
80
 
81
			<ul class="tabs">
82
				<li class="active">Javascript</li>
83
				<li>HTML</li>
84
				<li>CSS</li>
85
				<li>Ajax</li>
86
				<li>Server-side script</li>
87
			</ul>
88
 
89
			<div class="tabs">
90
				<div class="js">
91
					<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
92
	$('#example').DataTable( {
93
		&quot;ajax&quot;: &quot;../../../../examples/ajax/data/objects.txt&quot;,
94
		&quot;columns&quot;: [
95
			{ &quot;data&quot;: &quot;name&quot; },
96
			{ &quot;data&quot;: &quot;position&quot; },
97
			{ &quot;data&quot;: &quot;office&quot; },
98
			{ &quot;data&quot;: &quot;extn&quot; },
99
			{ &quot;data&quot;: &quot;start_date&quot; },
100
			{ &quot;data&quot;: &quot;salary&quot; }
101
		]
102
	} );
103
} );</code>
104
 
105
					<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
106
 
107
					<ul>
108
						<li><a href="../../../../media/js/jquery.js">../../../../media/js/jquery.js</a></li>
109
						<li><a href="../../../../media/js/jquery.dataTables.js">../../../../media/js/jquery.dataTables.js</a></li>
110
						<li><a href="../../js/dataTables.responsive.js">../../js/dataTables.responsive.js</a></li>
111
					</ul>
112
				</div>
113
 
114
				<div class="table">
115
					<p>The HTML shown below is the raw HTML table element, before it has been enhanced by DataTables:</p>
116
				</div>
117
 
118
				<div class="css">
119
					<div>
120
						<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
121
						additional CSS used is shown below:</p><code class="multiline language-css">div.container { max-width: 1200px }</code>
122
					</div>
123
 
124
					<p>The following CSS library files are loaded for use in this example to provide the styling of the table:</p>
125
 
126
					<ul>
127
						<li><a href="../../../../media/css/jquery.dataTables.css">../../../../media/css/jquery.dataTables.css</a></li>
128
						<li><a href="../../css/dataTables.responsive.css">../../css/dataTables.responsive.css</a></li>
129
					</ul>
130
				</div>
131
 
132
				<div class="ajax">
133
					<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
134
					loaded.</p>
135
				</div>
136
 
137
				<div class="php">
138
					<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
139
					processing scripts can be written in any language, using <a href="//datatables.net/manual/server-side">the protocol described in the DataTables
140
					documentation</a>.</p>
141
				</div>
142
			</div>
143
		</section>
144
	</div>
145
 
146
	<section>
147
		<div class="footer">
148
			<div class="gradient"></div>
149
 
150
			<div class="liner">
151
				<h2>Other examples</h2>
152
 
153
				<div class="toc">
154
					<div class="toc-group">
155
						<h3><a href="./index.html">Basic initialisation</a></h3>
156
						<ul class="toc active">
157
							<li><a href="./className.html">Class name</a></li>
158
							<li><a href="./option.html">Configuration option</a></li>
159
							<li><a href="./new.html">`new` constructor</a></li>
160
							<li class="active"><a href="./ajax.html">Ajax data</a></li>
161
							<li><a href="./default.html">Default initialisation</a></li>
162
						</ul>
163
					</div>
164
 
165
					<div class="toc-group">
166
						<h3><a href="../styling/index.html">Styling</a></h3>
167
						<ul class="toc">
168
							<li><a href="../styling/bootstrap.html">Bootstrap styling</a></li>
169
							<li><a href="../styling/foundation.html">Foundation styling</a></li>
170
						</ul>
171
					</div>
172
 
173
					<div class="toc-group">
174
						<h3><a href="../display-control/index.html">Display control</a></h3>
175
						<ul class="toc">
176
							<li><a href="../display-control/auto.html">Automatic column hiding</a></li>
177
							<li><a href="../display-control/classes.html">Class control</a></li>
178
							<li><a href="../display-control/init-classes.html">Assigned class control</a></li>
179
							<li><a href="../display-control/fixedHeader.html">With FixedHeader</a></li>
180
						</ul>
181
					</div>
182
 
183
					<div class="toc-group">
184
						<h3><a href="../child-rows/index.html">Child rows</a></h3>
185
						<ul class="toc">
186
							<li><a href="../child-rows/disable-child-rows.html">Disable child rows</a></li>
187
							<li><a href="../child-rows/column-control.html">Column controlled child rows</a></li>
188
							<li><a href="../child-rows/right-column.html">Column control - right</a></li>
189
							<li><a href="../child-rows/whole-row-control.html">Whole row child row control</a></li>
190
							<li><a href="../child-rows/custom-renderer.html">Custom child row renderer</a></li>
191
						</ul>
192
					</div>
193
				</div>
194
 
195
				<div class="epilogue">
196
					<p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full information about its API properties and methods.<br>
197
					Additionally, there are a wide range of <a href="http://www.datatables.net/extras">extras</a> and <a href="http://www.datatables.net/plug-ins">plug-ins</a>
198
					which extend the capabilities of DataTables.</p>
199
 
200
					<p class="copyright">DataTables designed and created by <a href="http://www.sprymedia.co.uk">SpryMedia Ltd</a> &#169; 2007-2015<br>
201
					DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
202
				</div>
203
			</div>
204
		</div>
205
	</section>
206
</body>
207
</html>