Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 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>DataTables example - Ajax sourced data</title> |
||
| 9 | <link rel="stylesheet" type="text/css" href="../../media/css/jquery.dataTables.css"> |
||
| 10 | <link rel="stylesheet" type="text/css" href="../resources/syntax/shCore.css"> |
||
| 11 | <link rel="stylesheet" type="text/css" href="../resources/demo.css"> |
||
| 12 | <style type="text/css" class="init"> |
||
| 13 | |||
| 14 | </style> |
||
| 15 | <script type="text/javascript" language="javascript" src="../../media/js/jquery.js"></script> |
||
| 16 | <script type="text/javascript" language="javascript" src="../../media/js/jquery.dataTables.js"></script> |
||
| 17 | <script type="text/javascript" language="javascript" src="../resources/syntax/shCore.js"></script> |
||
| 18 | <script type="text/javascript" language="javascript" src="../resources/demo.js"></script> |
||
| 19 | <script type="text/javascript" language="javascript" class="init"> |
||
| 20 | |||
| 21 | |||
| 22 | $(document).ready(function() { |
||
| 23 | $('#example').dataTable( { |
||
| 24 | "ajax": '../ajax/data/arrays.txt' |
||
| 25 | } ); |
||
| 26 | } ); |
||
| 27 | |||
| 28 | |||
| 29 | </script> |
||
| 30 | </head> |
||
| 31 | |||
| 32 | <body class="dt-example"> |
||
| 33 | <div class="container"> |
||
| 34 | <section> |
||
| 35 | <h1>DataTables example <span>Ajax sourced data</span></h1> |
||
| 36 | |||
| 37 | <div class="info"> |
||
| 38 | <p>DataTables has the ability to read data from virtually any JSON data source that can be obtained by |
||
| 39 | Ajax. This can be done, in its most simple form, by setting the <a href= |
||
| 40 | "//datatables.net/reference/option/ajax"><code class="option" title= |
||
| 41 | "DataTables initialisation option">ajax<span>DT</span></code></a> option to the address of the JSON |
||
| 42 | data source.</p> |
||
| 43 | |||
| 44 | <p>The <a href="//datatables.net/reference/option/ajax"><code class="option" title= |
||
| 45 | "DataTables initialisation option">ajax<span>DT</span></code></a> option also allows for more advanced |
||
| 46 | configuration such as altering how the Ajax request is made. See the <a href= |
||
| 47 | "//datatables.net/reference/option/ajax"><code class="option" title= |
||
| 48 | "DataTables initialisation option">ajax<span>DT</span></code></a> documentation and the <a href= |
||
| 49 | "../ajax">other Ajax examples</a> for further information.</p> |
||
| 50 | |||
| 51 | <p>The example below shows DataTables loading data for a table from arrays as the data source (object |
||
| 52 | parameters can also be used through the <a href= |
||
| 53 | "//datatables.net/reference/option/columns.data"><code class="option" title= |
||
| 54 | "DataTables initialisation option">columns.data<span>DT</span></code></a> option ).</p> |
||
| 55 | </div> |
||
| 56 | |||
| 57 | <table id="example" class="display" 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 |
||
| 92 | example:</p><code class="multiline brush: js;">$(document).ready(function() { |
||
| 93 | $('#example').dataTable( { |
||
| 94 | "ajax": '../ajax/data/arrays.txt' |
||
| 95 | } ); |
||
| 96 | } );</code> |
||
| 97 | |||
| 98 | <p>In addition to the above code, the following Javascript library files are loaded for use in this |
||
| 99 | example:</p> |
||
| 100 | |||
| 101 | <ul> |
||
| 102 | <li><a href="../../media/js/jquery.js">../../media/js/jquery.js</a></li> |
||
| 103 | <li><a href="../../media/js/jquery.dataTables.js">../../media/js/jquery.dataTables.js</a></li> |
||
| 104 | </ul> |
||
| 105 | </div> |
||
| 106 | |||
| 107 | <div class="table"> |
||
| 108 | <p>The HTML shown below is the raw HTML table element, before it has been enhanced by |
||
| 109 | DataTables:</p> |
||
| 110 | </div> |
||
| 111 | |||
| 112 | <div class="css"> |
||
| 113 | <div> |
||
| 114 | <p>This example uses a little bit of additional CSS beyond what is loaded from the library |
||
| 115 | files (below), in order to correctly display the table. The additional CSS used is shown |
||
| 116 | below:</p><code class="multiline brush: js;"></code> |
||
| 117 | </div> |
||
| 118 | |||
| 119 | <p>The following CSS library files are loaded for use in this example to provide the styling of the |
||
| 120 | table:</p> |
||
| 121 | |||
| 122 | <ul> |
||
| 123 | <li><a href= |
||
| 124 | "../../media/css/jquery.dataTables.css">../../media/css/jquery.dataTables.css</a></li> |
||
| 125 | </ul> |
||
| 126 | </div> |
||
| 127 | |||
| 128 | <div class="ajax"> |
||
| 129 | <p>This table loads data by Ajax. The latest data that has been loaded is shown below. This data |
||
| 130 | will update automatically as any additional data is loaded.</p> |
||
| 131 | </div> |
||
| 132 | |||
| 133 | <div class="php"> |
||
| 134 | <p>The script used to perform the server-side processing for this table is shown below. Please note |
||
| 135 | that this is just an example script using PHP. Server-side processing scripts can be written in any |
||
| 136 | language, using <a href="//datatables.net/manual/server-side">the protocol described in the |
||
| 137 | DataTables documentation</a>.</p> |
||
| 138 | </div> |
||
| 139 | </div> |
||
| 140 | </section> |
||
| 141 | </div> |
||
| 142 | |||
| 143 | <section> |
||
| 144 | <div class="footer"> |
||
| 145 | <div class="gradient"></div> |
||
| 146 | |||
| 147 | <div class="liner"> |
||
| 148 | <h2>Other examples</h2> |
||
| 149 | |||
| 150 | <div class="toc"> |
||
| 151 | <div class="toc-group"> |
||
| 152 | <h3><a href="../basic_init/index.html">Basic initialisation</a></h3> |
||
| 153 | <ul class="toc"> |
||
| 154 | <li><a href="../basic_init/zero_configuration.html">Zero configuration</a></li> |
||
| 155 | <li><a href="../basic_init/filter_only.html">Feature enable / disable</a></li> |
||
| 156 | <li><a href="../basic_init/table_sorting.html">Default ordering (sorting)</a></li> |
||
| 157 | <li><a href="../basic_init/multi_col_sort.html">Multi-column ordering</a></li> |
||
| 158 | <li><a href="../basic_init/multiple_tables.html">Multiple tables</a></li> |
||
| 159 | <li><a href="../basic_init/hidden_columns.html">Hidden columns</a></li> |
||
| 160 | <li><a href="../basic_init/complex_header.html">Complex headers (rowspan and |
||
| 161 | colspan)</a></li> |
||
| 162 | <li><a href="../basic_init/dom.html">DOM positioning</a></li> |
||
| 163 | <li><a href="../basic_init/flexible_width.html">Flexible table width</a></li> |
||
| 164 | <li><a href="../basic_init/state_save.html">State saving</a></li> |
||
| 165 | <li><a href="../basic_init/alt_pagination.html">Alternative pagination</a></li> |
||
| 166 | <li><a href="../basic_init/scroll_y.html">Scroll - vertical</a></li> |
||
| 167 | <li><a href="../basic_init/scroll_x.html">Scroll - horizontal</a></li> |
||
| 168 | <li><a href="../basic_init/scroll_xy.html">Scroll - horizontal and vertical</a></li> |
||
| 169 | <li><a href="../basic_init/scroll_y_theme.html">Scroll - vertical with jQuery UI |
||
| 170 | ThemeRoller</a></li> |
||
| 171 | <li><a href="../basic_init/comma-decimal.html">Language - Comma decimal place</a></li> |
||
| 172 | <li><a href="../basic_init/language.html">Language options</a></li> |
||
| 173 | </ul> |
||
| 174 | </div> |
||
| 175 | |||
| 176 | <div class="toc-group"> |
||
| 177 | <h3><a href="../advanced_init/index.html">Advanced initialisation</a></h3> |
||
| 178 | <ul class="toc"> |
||
| 179 | <li><a href="../advanced_init/events_live.html">DOM / jQuery events</a></li> |
||
| 180 | <li><a href="../advanced_init/dt_events.html">DataTables events</a></li> |
||
| 181 | <li><a href="../advanced_init/column_render.html">Column rendering</a></li> |
||
| 182 | <li><a href="../advanced_init/length_menu.html">Page length options</a></li> |
||
| 183 | <li><a href="../advanced_init/dom_multiple_elements.html">Multiple table control |
||
| 184 | elements</a></li> |
||
| 185 | <li><a href="../advanced_init/complex_header.html">Complex headers (rowspan / |
||
| 186 | colspan)</a></li> |
||
| 187 | <li><a href="../advanced_init/html5-data-attributes.html">HTML5 data-* attributes</a></li> |
||
| 188 | <li><a href="../advanced_init/language_file.html">Language file</a></li> |
||
| 189 | <li><a href="../advanced_init/defaults.html">Setting defaults</a></li> |
||
| 190 | <li><a href="../advanced_init/row_callback.html">Row created callback</a></li> |
||
| 191 | <li><a href="../advanced_init/row_grouping.html">Row grouping</a></li> |
||
| 192 | <li><a href="../advanced_init/footer_callback.html">Footer callback</a></li> |
||
| 193 | <li><a href="../advanced_init/dom_toolbar.html">Custom toolbar elements</a></li> |
||
| 194 | <li><a href="../advanced_init/sort_direction_control.html">Order direction sequence |
||
| 195 | control</a></li> |
||
| 196 | </ul> |
||
| 197 | </div> |
||
| 198 | |||
| 199 | <div class="toc-group"> |
||
| 200 | <h3><a href="../styling/index.html">Styling</a></h3> |
||
| 201 | <ul class="toc"> |
||
| 202 | <li><a href="../styling/display.html">Base style</a></li> |
||
| 203 | <li><a href="../styling/no-classes.html">Base style - no styling classes</a></li> |
||
| 204 | <li><a href="../styling/cell-border.html">Base style - cell borders</a></li> |
||
| 205 | <li><a href="../styling/compact.html">Base style - compact</a></li> |
||
| 206 | <li><a href="../styling/hover.html">Base style - hover</a></li> |
||
| 207 | <li><a href="../styling/order-column.html">Base style - order-column</a></li> |
||
| 208 | <li><a href="../styling/row-border.html">Base style - row borders</a></li> |
||
| 209 | <li><a href="../styling/stripe.html">Base style - stripe</a></li> |
||
| 210 | <li><a href="../styling/bootstrap.html">Bootstrap</a></li> |
||
| 211 | <li><a href="../styling/foundation.html">Foundation</a></li> |
||
| 212 | <li><a href="../styling/jqueryUI.html">jQuery UI ThemeRoller</a></li> |
||
| 213 | </ul> |
||
| 214 | </div> |
||
| 215 | |||
| 216 | <div class="toc-group"> |
||
| 217 | <h3><a href="./index.html">Data sources</a></h3> |
||
| 218 | <ul class="toc active"> |
||
| 219 | <li><a href="./dom.html">HTML (DOM) sourced data</a></li> |
||
| 220 | <li class="active"><a href="./ajax.html">Ajax sourced data</a></li> |
||
| 221 | <li><a href="./js_array.html">Javascript sourced data</a></li> |
||
| 222 | <li><a href="./server_side.html">Server-side processing</a></li> |
||
| 223 | </ul> |
||
| 224 | </div> |
||
| 225 | |||
| 226 | <div class="toc-group"> |
||
| 227 | <h3><a href="../api/index.html">API</a></h3> |
||
| 228 | <ul class="toc"> |
||
| 229 | <li><a href="../api/add_row.html">Add rows</a></li> |
||
| 230 | <li><a href="../api/multi_filter.html">Individual column searching (text inputs)</a></li> |
||
| 231 | <li><a href="../api/multi_filter_select.html">Individual column searching (select |
||
| 232 | inputs)</a></li> |
||
| 233 | <li><a href="../api/highlight.html">Highlighting rows and columns</a></li> |
||
| 234 | <li><a href="../api/row_details.html">Child rows (show extra / detailed |
||
| 235 | information)</a></li> |
||
| 236 | <li><a href="../api/select_row.html">Row selection (multiple rows)</a></li> |
||
| 237 | <li><a href="../api/select_single_row.html">Row selection and deletion (single |
||
| 238 | row)</a></li> |
||
| 239 | <li><a href="../api/form.html">Form inputs</a></li> |
||
| 240 | <li><a href="../api/counter_columns.html">Index column</a></li> |
||
| 241 | <li><a href="../api/show_hide.html">Show / hide columns dynamically</a></li> |
||
| 242 | <li><a href="../api/api_in_init.html">Using API in callbacks</a></li> |
||
| 243 | <li><a href="../api/tabs_and_scrolling.html">Scrolling and jQuery UI tabs</a></li> |
||
| 244 | <li><a href="../api/regex.html">Search API (regular expressions)</a></li> |
||
| 245 | </ul> |
||
| 246 | </div> |
||
| 247 | |||
| 248 | <div class="toc-group"> |
||
| 249 | <h3><a href="../ajax/index.html">Ajax</a></h3> |
||
| 250 | <ul class="toc"> |
||
| 251 | <li><a href="../ajax/simple.html">Ajax data source (arrays)</a></li> |
||
| 252 | <li><a href="../ajax/objects.html">Ajax data source (objects)</a></li> |
||
| 253 | <li><a href="../ajax/deep.html">Nested object data (objects)</a></li> |
||
| 254 | <li><a href="../ajax/objects_subarrays.html">Nested object data (arrays)</a></li> |
||
| 255 | <li><a href="../ajax/orthogonal-data.html">Orthogonal data</a></li> |
||
| 256 | <li><a href="../ajax/null_data_source.html">Generated content for a column</a></li> |
||
| 257 | <li><a href="../ajax/custom_data_property.html">Custom data source property</a></li> |
||
| 258 | <li><a href="../ajax/custom_data_flat.html">Flat array data source</a></li> |
||
| 259 | <li><a href="../ajax/defer_render.html">Deferred rendering for speed</a></li> |
||
| 260 | </ul> |
||
| 261 | </div> |
||
| 262 | |||
| 263 | <div class="toc-group"> |
||
| 264 | <h3><a href="../server_side/index.html">Server-side</a></h3> |
||
| 265 | <ul class="toc"> |
||
| 266 | <li><a href="../server_side/simple.html">Server-side processing</a></li> |
||
| 267 | <li><a href="../server_side/custom_vars.html">Custom HTTP variables</a></li> |
||
| 268 | <li><a href="../server_side/post.html">POST data</a></li> |
||
| 269 | <li><a href="../server_side/ids.html">Automatic addition of row ID attributes</a></li> |
||
| 270 | <li><a href="../server_side/object_data.html">Object data source</a></li> |
||
| 271 | <li><a href="../server_side/row_details.html">Row details</a></li> |
||
| 272 | <li><a href="../server_side/select_rows.html">Row selection</a></li> |
||
| 273 | <li><a href="../server_side/jsonp.html">JSONP data source for remote domains</a></li> |
||
| 274 | <li><a href="../server_side/defer_loading.html">Deferred loading of data</a></li> |
||
| 275 | <li><a href="../server_side/pipeline.html">Pipelining data to reduce Ajax calls for |
||
| 276 | paging</a></li> |
||
| 277 | </ul> |
||
| 278 | </div> |
||
| 279 | |||
| 280 | <div class="toc-group"> |
||
| 281 | <h3><a href="../plug-ins/index.html">Plug-ins</a></h3> |
||
| 282 | <ul class="toc"> |
||
| 283 | <li><a href="../plug-ins/api.html">API plug-in methods</a></li> |
||
| 284 | <li><a href="../plug-ins/sorting_auto.html">Ordering plug-ins (with type |
||
| 285 | detection)</a></li> |
||
| 286 | <li><a href="../plug-ins/sorting_manual.html">Ordering plug-ins (no type |
||
| 287 | detection)</a></li> |
||
| 288 | <li><a href="../plug-ins/range_filtering.html">Custom filtering - range search</a></li> |
||
| 289 | <li><a href="../plug-ins/dom_sort.html">Live DOM ordering</a></li> |
||
| 290 | </ul> |
||
| 291 | </div> |
||
| 292 | </div> |
||
| 293 | |||
| 294 | <div class="epilogue"> |
||
| 295 | <p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full |
||
| 296 | information about its API properties and methods.<br> |
||
| 297 | Additionally, there are a wide range of <a href="http://www.datatables.net/extras">extras</a> and |
||
| 298 | <a href="http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of |
||
| 299 | DataTables.</p> |
||
| 300 | |||
| 301 | <p class="copyright">DataTables designed and created by <a href= |
||
| 302 | "http://www.sprymedia.co.uk">SpryMedia Ltd</a> © 2007-2014<br> |
||
| 303 | DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p> |
||
| 304 | </div> |
||
| 305 | </div> |
||
| 306 | </div> |
||
| 307 | </section> |
||
| 308 | </body> |
||
| 309 | </html> |