Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / pybind / mgr / dashboard / static / AdminLTE-2.3.7 / plugins / datatables / extensions / Responsive / examples / initialisation / ajax.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 - 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                                                         <li><a href="../styling/scrolling.html">Vertical scrolling</a></li>
171                                                         <li><a href="../styling/compact.html">Compact styling</a></li>
172                                                 </ul>
173                                         </div>
174
175                                         <div class="toc-group">
176                                                 <h3><a href="../display-control/index.html">Display control</a></h3>
177                                                 <ul class="toc">
178                                                         <li><a href="../display-control/auto.html">Automatic column hiding</a></li>
179                                                         <li><a href="../display-control/classes.html">Class control</a></li>
180                                                         <li><a href="../display-control/init-classes.html">Assigned class control</a></li>
181                                                         <li><a href="../display-control/fixedHeader.html">With FixedHeader</a></li>
182                                                         <li><a href="../display-control/complexHeader.html">Complex headers (rowspan / colspan)</a></li>
183                                                 </ul>
184                                         </div>
185
186                                         <div class="toc-group">
187                                                 <h3><a href="../child-rows/index.html">Child rows</a></h3>
188                                                 <ul class="toc">
189                                                         <li><a href="../child-rows/disable-child-rows.html">Disable child rows</a></li>
190                                                         <li><a href="../child-rows/column-control.html">Column controlled child rows</a></li>
191                                                         <li><a href="../child-rows/right-column.html">Column control - right</a></li>
192                                                         <li><a href="../child-rows/whole-row-control.html">Whole row child row control</a></li>
193                                                         <li><a href="../child-rows/custom-renderer.html">Custom child row renderer</a></li>
194                                                 </ul>
195                                         </div>
196                                 </div>
197
198                                 <div class="epilogue">
199                                         <p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full information about its API properties and methods.<br>
200                                         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>
201                                         which extend the capabilities of DataTables.</p>
202
203                                         <p class="copyright">DataTables designed and created by <a href="http://www.sprymedia.co.uk">SpryMedia Ltd</a> &#169; 2007-2015<br>
204                                         DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
205                                 </div>
206                         </div>
207                 </div>
208         </section>
209 </body>
210 </html>