]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/display-control/init-classes.html
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / pybind / mgr / dashboard / static / AdminLTE-2.3.7 / plugins / datatables / extensions / Responsive / examples / display-control / init-classes.html
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 - Assigned class control</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
16 </style>
17 <script type="text/javascript" language="javascript" src="../../../../media/js/jquery.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.responsive.js"></script>
20 <script type="text/javascript" language="javascript" src="../../../../examples/resources/syntax/shCore.js"></script>
21 <script type="text/javascript" language="javascript" src="../../../../examples/resources/demo.js"></script>
22 <script type="text/javascript" language="javascript" class="init">
23
24
25
26 $(document).ready(function() {
27 $('#example').DataTable( {
28 "ajax": "../../../../examples/ajax/data/objects.txt",
29 "columns": [
30 { "data": "name", className: "all" },
31 { "data": "position", className: "min-phone-l" },
32 { "data": "office", className: "min-tablet" },
33 { "data": "age", className: "min-tablet" },
34 { "data": "start_date", className: "never" },
35 { "data": "salary", className: "desktop" },
36 { "data": "extn", className: "none" }
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>Assigned class control</span></h1>
50
51 <div class="info">
52 <p>This example exactly matches the functionality of the <a href="classes.xml">class control example</a> but in this case the classes are assigned using the
53 <a href="//datatables.net/reference/option/columns.className"><code class="option" title=
54 "DataTables initialisation option">columns.className<span>DT</span></code></a> option.</p>
55 </div>
56
57 <div id="breakpoint"></div>
58
59 <table id="example" class="display responsive" width="100%">
60 <thead>
61 <tr>
62 <th>Name</th>
63 <th>Position</th>
64 <th>Office</th>
65 <th>Age</th>
66 <th>Start date</th>
67 <th>Salary</th>
68 <th>Extn.</th>
69 </tr>
70 </thead>
71
72 <tfoot>
73 <tr>
74 <th>Name</th>
75 <th>Position</th>
76 <th>Office</th>
77 <th>Age</th>
78 <th>Start date</th>
79 <th>Salary</th>
80 <th>Extn.</th>
81 </tr>
82 </tfoot>
83 </table>
84
85 <ul class="tabs">
86 <li class="active">Javascript</li>
87 <li>HTML</li>
88 <li>CSS</li>
89 <li>Ajax</li>
90 <li>Server-side script</li>
91 </ul>
92
93 <div class="tabs">
94 <div class="js">
95 <p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
96 $('#example').DataTable( {
97 &quot;ajax&quot;: &quot;../../../../examples/ajax/data/objects.txt&quot;,
98 &quot;columns&quot;: [
99 { &quot;data&quot;: &quot;name&quot;, className: &quot;all&quot; },
100 { &quot;data&quot;: &quot;position&quot;, className: &quot;min-phone-l&quot; },
101 { &quot;data&quot;: &quot;office&quot;, className: &quot;min-tablet&quot; },
102 { &quot;data&quot;: &quot;age&quot;, className: &quot;min-tablet&quot; },
103 { &quot;data&quot;: &quot;start_date&quot;, className: &quot;never&quot; },
104 { &quot;data&quot;: &quot;salary&quot;, className: &quot;desktop&quot; },
105 { &quot;data&quot;: &quot;extn&quot;, className: &quot;none&quot; }
106 ]
107 } );
108 } );</code>
109
110 <p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
111
112 <ul>
113 <li><a href="../../../../media/js/jquery.js">../../../../media/js/jquery.js</a></li>
114 <li><a href="../../../../media/js/jquery.dataTables.js">../../../../media/js/jquery.dataTables.js</a></li>
115 <li><a href="../../js/dataTables.responsive.js">../../js/dataTables.responsive.js</a></li>
116 </ul>
117 </div>
118
119 <div class="table">
120 <p>The HTML shown below is the raw HTML table element, before it has been enhanced by DataTables:</p>
121 </div>
122
123 <div class="css">
124 <div>
125 <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
126 additional CSS used is shown below:</p><code class="multiline language-css"></code>
127 </div>
128
129 <p>The following CSS library files are loaded for use in this example to provide the styling of the table:</p>
130
131 <ul>
132 <li><a href="../../../../media/css/jquery.dataTables.css">../../../../media/css/jquery.dataTables.css</a></li>
133 <li><a href="../../css/dataTables.responsive.css">../../css/dataTables.responsive.css</a></li>
134 </ul>
135 </div>
136
137 <div class="ajax">
138 <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
139 loaded.</p>
140 </div>
141
142 <div class="php">
143 <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
144 processing scripts can be written in any language, using <a href="//datatables.net/manual/server-side">the protocol described in the DataTables
145 documentation</a>.</p>
146 </div>
147 </div>
148 </section>
149 </div>
150
151 <section>
152 <div class="footer">
153 <div class="gradient"></div>
154
155 <div class="liner">
156 <h2>Other examples</h2>
157
158 <div class="toc">
159 <div class="toc-group">
160 <h3><a href="../initialisation/index.html">Basic initialisation</a></h3>
161 <ul class="toc">
162 <li><a href="../initialisation/className.html">Class name</a></li>
163 <li><a href="../initialisation/option.html">Configuration option</a></li>
164 <li><a href="../initialisation/new.html">`new` constructor</a></li>
165 <li><a href="../initialisation/ajax.html">Ajax data</a></li>
166 <li><a href="../initialisation/default.html">Default initialisation</a></li>
167 </ul>
168 </div>
169
170 <div class="toc-group">
171 <h3><a href="../styling/index.html">Styling</a></h3>
172 <ul class="toc">
173 <li><a href="../styling/bootstrap.html">Bootstrap styling</a></li>
174 <li><a href="../styling/foundation.html">Foundation styling</a></li>
175 <li><a href="../styling/scrolling.html">Vertical scrolling</a></li>
176 <li><a href="../styling/compact.html">Compact styling</a></li>
177 </ul>
178 </div>
179
180 <div class="toc-group">
181 <h3><a href="./index.html">Display control</a></h3>
182 <ul class="toc active">
183 <li><a href="./auto.html">Automatic column hiding</a></li>
184 <li><a href="./classes.html">Class control</a></li>
185 <li class="active"><a href="./init-classes.html">Assigned class control</a></li>
186 <li><a href="./fixedHeader.html">With FixedHeader</a></li>
187 <li><a href="./complexHeader.html">Complex headers (rowspan / colspan)</a></li>
188 </ul>
189 </div>
190
191 <div class="toc-group">
192 <h3><a href="../child-rows/index.html">Child rows</a></h3>
193 <ul class="toc">
194 <li><a href="../child-rows/disable-child-rows.html">Disable child rows</a></li>
195 <li><a href="../child-rows/column-control.html">Column controlled child rows</a></li>
196 <li><a href="../child-rows/right-column.html">Column control - right</a></li>
197 <li><a href="../child-rows/whole-row-control.html">Whole row child row control</a></li>
198 <li><a href="../child-rows/custom-renderer.html">Custom child row renderer</a></li>
199 </ul>
200 </div>
201 </div>
202
203 <div class="epilogue">
204 <p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full information about its API properties and methods.<br>
205 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>
206 which extend the capabilities of DataTables.</p>
207
208 <p class="copyright">DataTables designed and created by <a href="http://www.sprymedia.co.uk">SpryMedia Ltd</a> &#169; 2007-2015<br>
209 DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
210 </div>
211 </div>
212 </div>
213 </section>
214 </body>
215 </html>