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 - Flat array data source</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 | $(document).ready(function() { |
||
| 22 | $('#example').dataTable( { |
||
| 23 | "ajax": { |
||
| 24 | "url": "data/objects_root_array.txt", |
||
| 25 | "dataSrc": "" |
||
| 26 | }, |
||
| 27 | "columns": [ |
||
| 28 | { "data": "name" }, |
||
| 29 | { "data": "position" }, |
||
| 30 | { "data": "office" }, |
||
| 31 | { "data": "extn" }, |
||
| 32 | { "data": "start_date" }, |
||
| 33 | { "data": "salary" } |
||
| 34 | ] |
||
| 35 | } ); |
||
| 36 | } ); |
||
| 37 | |||
| 38 | </script> |
||
| 39 | </head> |
||
| 40 | |||
| 41 | <body class="dt-example"> |
||
| 42 | <div class="container"> |
||
| 43 | <section> |
||
| 44 | <h1>DataTables example <span>Flat array data source</span></h1> |
||
| 45 | |||
| 46 | <div class="info"> |
||
| 47 | <p>When loading data from an Ajax source, by default, DataTables will look for the data to use in the |
||
| 48 | <code>data</code> parameter of a returned object (e.g. <code>{ "data": [...] }</code>). This can easily |
||
| 49 | be change by using the <code>dataSrc</code> option of the <a href= |
||
| 50 | "//datatables.net/reference/option/ajax"><code class="option" title= |
||
| 51 | "DataTables initialisation option">ajax<span>DT</span></code></a> initiation option.</p> |
||
| 52 | |||
| 53 | <p>The <a href="//datatables.net/reference/option/ajax.dataSrc"><code class="option" title= |
||
| 54 | "DataTables initialisation option">ajax.dataSrc<span>DT</span></code></a> has a number of ways in which |
||
| 55 | it can be used:</p> |
||
| 56 | |||
| 57 | <ul class="markdown"> |
||
| 58 | <li>As a string (e.g. <code>dataSrc: 'myData'</code>) - obtain data from a different property in |
||
| 59 | the source object.</li> |
||
| 60 | <li>As an empty string (e.g. <code>dataSrc: ''</code>) - the data source is not an object but an |
||
| 61 | array.</li> |
||
| 62 | <li>As a function (e.g. <code>dataSrc: function(json) {}</code>) - a function can be used to |
||
| 63 | transform the data from one source format to another (for example you could convert from XML to a |
||
| 64 | Javascript object). The value returned from the function is used as the data for the table.</li> |
||
| 65 | </ul> |
||
| 66 | |||
| 67 | <p>The example below shows <a href="//datatables.net/reference/option/ajax.dataSrc"><code class= |
||
| 68 | "option" title="DataTables initialisation option">ajax.dataSrc<span>DT</span></code></a> being used as |
||
| 69 | an empty string. This tells DataTables that the JSON loaded is a plain array, not an object with an |
||
| 70 | array inside it as is the default.</p> |
||
| 71 | </div> |
||
| 72 | |||
| 73 | <table id="example" class="display" cellspacing="0" width="100%"> |
||
| 74 | <thead> |
||
| 75 | <tr> |
||
| 76 | <th>Name</th> |
||
| 77 | <th>Position</th> |
||
| 78 | <th>Office</th> |
||
| 79 | <th>Extn.</th> |
||
| 80 | <th>Start date</th> |
||
| 81 | <th>Salary</th> |
||
| 82 | </tr> |
||
| 83 | </thead> |
||
| 84 | |||
| 85 | <tfoot> |
||
| 86 | <tr> |
||
| 87 | <th>Name</th> |
||
| 88 | <th>Position</th> |
||
| 89 | <th>Office</th> |
||
| 90 | <th>Extn.</th> |
||
| 91 | <th>Start date</th> |
||
| 92 | <th>Salary</th> |
||
| 93 | </tr> |
||
| 94 | </tfoot> |
||
| 95 | </table> |
||
| 96 | |||
| 97 | <ul class="tabs"> |
||
| 98 | <li class="active">Javascript</li> |
||
| 99 | <li>HTML</li> |
||
| 100 | <li>CSS</li> |
||
| 101 | <li>Ajax</li> |
||
| 102 | <li>Server-side script</li> |
||
| 103 | </ul> |
||
| 104 | |||
| 105 | <div class="tabs"> |
||
| 106 | <div class="js"> |
||
| 107 | <p>The Javascript shown below is used to initialise the table shown in this |
||
| 108 | example:</p><code class="multiline brush: js;">$(document).ready(function() { |
||
| 109 | $('#example').dataTable( { |
||
| 110 | "ajax": { |
||
| 111 | "url": "data/objects_root_array.txt", |
||
| 112 | "dataSrc": "" |
||
| 113 | }, |
||
| 114 | "columns": [ |
||
| 115 | { "data": "name" }, |
||
| 116 | { "data": "position" }, |
||
| 117 | { "data": "office" }, |
||
| 118 | { "data": "extn" }, |
||
| 119 | { "data": "start_date" }, |
||
| 120 | { "data": "salary" } |
||
| 121 | ] |
||
| 122 | } ); |
||
| 123 | } );</code> |
||
| 124 | |||
| 125 | <p>In addition to the above code, the following Javascript library files are loaded for use in this |
||
| 126 | example:</p> |
||
| 127 | |||
| 128 | <ul> |
||
| 129 | <li><a href="../../media/js/jquery.js">../../media/js/jquery.js</a></li> |
||
| 130 | <li><a href="../../media/js/jquery.dataTables.js">../../media/js/jquery.dataTables.js</a></li> |
||
| 131 | </ul> |
||
| 132 | </div> |
||
| 133 | |||
| 134 | <div class="table"> |
||
| 135 | <p>The HTML shown below is the raw HTML table element, before it has been enhanced by |
||
| 136 | DataTables:</p> |
||
| 137 | </div> |
||
| 138 | |||
| 139 | <div class="css"> |
||
| 140 | <div> |
||
| 141 | <p>This example uses a little bit of additional CSS beyond what is loaded from the library |
||
| 142 | files (below), in order to correctly display the table. The additional CSS used is shown |
||
| 143 | below:</p><code class="multiline brush: js;"></code> |
||
| 144 | </div> |
||
| 145 | |||
| 146 | <p>The following CSS library files are loaded for use in this example to provide the styling of the |
||
| 147 | table:</p> |
||
| 148 | |||
| 149 | <ul> |
||
| 150 | <li><a href= |
||
| 151 | "../../media/css/jquery.dataTables.css">../../media/css/jquery.dataTables.css</a></li> |
||
| 152 | </ul> |
||
| 153 | </div> |
||
| 154 | |||
| 155 | <div class="ajax"> |
||
| 156 | <p>This table loads data by Ajax. The latest data that has been loaded is shown below. This data |
||
| 157 | will update automatically as any additional data is loaded.</p> |
||
| 158 | </div> |
||
| 159 | |||
| 160 | <div class="php"> |
||
| 161 | <p>The script used to perform the server-side processing for this table is shown below. Please note |
||
| 162 | that this is just an example script using PHP. Server-side processing scripts can be written in any |
||
| 163 | language, using <a href="//datatables.net/manual/server-side">the protocol described in the |
||
| 164 | DataTables documentation</a>.</p> |
||
| 165 | </div> |
||
| 166 | </div> |
||
| 167 | </section> |
||
| 168 | </div> |
||
| 169 | |||
| 170 | <section> |
||
| 171 | <div class="footer"> |
||
| 172 | <div class="gradient"></div> |
||
| 173 | |||
| 174 | <div class="liner"> |
||
| 175 | <h2>Other examples</h2> |
||
| 176 | |||
| 177 | <div class="toc"> |
||
| 178 | <div class="toc-group"> |
||
| 179 | <h3><a href="../basic_init/index.html">Basic initialisation</a></h3> |
||
| 180 | <ul class="toc"> |
||
| 181 | <li><a href="../basic_init/zero_configuration.html">Zero configuration</a></li> |
||
| 182 | <li><a href="../basic_init/filter_only.html">Feature enable / disable</a></li> |
||
| 183 | <li><a href="../basic_init/table_sorting.html">Default ordering (sorting)</a></li> |
||
| 184 | <li><a href="../basic_init/multi_col_sort.html">Multi-column ordering</a></li> |
||
| 185 | <li><a href="../basic_init/multiple_tables.html">Multiple tables</a></li> |
||
| 186 | <li><a href="../basic_init/hidden_columns.html">Hidden columns</a></li> |
||
| 187 | <li><a href="../basic_init/complex_header.html">Complex headers (rowspan and |
||
| 188 | colspan)</a></li> |
||
| 189 | <li><a href="../basic_init/dom.html">DOM positioning</a></li> |
||
| 190 | <li><a href="../basic_init/flexible_width.html">Flexible table width</a></li> |
||
| 191 | <li><a href="../basic_init/state_save.html">State saving</a></li> |
||
| 192 | <li><a href="../basic_init/alt_pagination.html">Alternative pagination</a></li> |
||
| 193 | <li><a href="../basic_init/scroll_y.html">Scroll - vertical</a></li> |
||
| 194 | <li><a href="../basic_init/scroll_x.html">Scroll - horizontal</a></li> |
||
| 195 | <li><a href="../basic_init/scroll_xy.html">Scroll - horizontal and vertical</a></li> |
||
| 196 | <li><a href="../basic_init/scroll_y_theme.html">Scroll - vertical with jQuery UI |
||
| 197 | ThemeRoller</a></li> |
||
| 198 | <li><a href="../basic_init/comma-decimal.html">Language - Comma decimal place</a></li> |
||
| 199 | <li><a href="../basic_init/language.html">Language options</a></li> |
||
| 200 | </ul> |
||
| 201 | </div> |
||
| 202 | |||
| 203 | <div class="toc-group"> |
||
| 204 | <h3><a href="../advanced_init/index.html">Advanced initialisation</a></h3> |
||
| 205 | <ul class="toc"> |
||
| 206 | <li><a href="../advanced_init/events_live.html">DOM / jQuery events</a></li> |
||
| 207 | <li><a href="../advanced_init/dt_events.html">DataTables events</a></li> |
||
| 208 | <li><a href="../advanced_init/column_render.html">Column rendering</a></li> |
||
| 209 | <li><a href="../advanced_init/length_menu.html">Page length options</a></li> |
||
| 210 | <li><a href="../advanced_init/dom_multiple_elements.html">Multiple table control |
||
| 211 | elements</a></li> |
||
| 212 | <li><a href="../advanced_init/complex_header.html">Complex headers (rowspan / |
||
| 213 | colspan)</a></li> |
||
| 214 | <li><a href="../advanced_init/html5-data-attributes.html">HTML5 data-* attributes</a></li> |
||
| 215 | <li><a href="../advanced_init/language_file.html">Language file</a></li> |
||
| 216 | <li><a href="../advanced_init/defaults.html">Setting defaults</a></li> |
||
| 217 | <li><a href="../advanced_init/row_callback.html">Row created callback</a></li> |
||
| 218 | <li><a href="../advanced_init/row_grouping.html">Row grouping</a></li> |
||
| 219 | <li><a href="../advanced_init/footer_callback.html">Footer callback</a></li> |
||
| 220 | <li><a href="../advanced_init/dom_toolbar.html">Custom toolbar elements</a></li> |
||
| 221 | <li><a href="../advanced_init/sort_direction_control.html">Order direction sequence |
||
| 222 | control</a></li> |
||
| 223 | </ul> |
||
| 224 | </div> |
||
| 225 | |||
| 226 | <div class="toc-group"> |
||
| 227 | <h3><a href="../styling/index.html">Styling</a></h3> |
||
| 228 | <ul class="toc"> |
||
| 229 | <li><a href="../styling/display.html">Base style</a></li> |
||
| 230 | <li><a href="../styling/no-classes.html">Base style - no styling classes</a></li> |
||
| 231 | <li><a href="../styling/cell-border.html">Base style - cell borders</a></li> |
||
| 232 | <li><a href="../styling/compact.html">Base style - compact</a></li> |
||
| 233 | <li><a href="../styling/hover.html">Base style - hover</a></li> |
||
| 234 | <li><a href="../styling/order-column.html">Base style - order-column</a></li> |
||
| 235 | <li><a href="../styling/row-border.html">Base style - row borders</a></li> |
||
| 236 | <li><a href="../styling/stripe.html">Base style - stripe</a></li> |
||
| 237 | <li><a href="../styling/bootstrap.html">Bootstrap</a></li> |
||
| 238 | <li><a href="../styling/foundation.html">Foundation</a></li> |
||
| 239 | <li><a href="../styling/jqueryUI.html">jQuery UI ThemeRoller</a></li> |
||
| 240 | </ul> |
||
| 241 | </div> |
||
| 242 | |||
| 243 | <div class="toc-group"> |
||
| 244 | <h3><a href="../data_sources/index.html">Data sources</a></h3> |
||
| 245 | <ul class="toc"> |
||
| 246 | <li><a href="../data_sources/dom.html">HTML (DOM) sourced data</a></li> |
||
| 247 | <li><a href="../data_sources/ajax.html">Ajax sourced data</a></li> |
||
| 248 | <li><a href="../data_sources/js_array.html">Javascript sourced data</a></li> |
||
| 249 | <li><a href="../data_sources/server_side.html">Server-side processing</a></li> |
||
| 250 | </ul> |
||
| 251 | </div> |
||
| 252 | |||
| 253 | <div class="toc-group"> |
||
| 254 | <h3><a href="../api/index.html">API</a></h3> |
||
| 255 | <ul class="toc"> |
||
| 256 | <li><a href="../api/add_row.html">Add rows</a></li> |
||
| 257 | <li><a href="../api/multi_filter.html">Individual column searching (text inputs)</a></li> |
||
| 258 | <li><a href="../api/multi_filter_select.html">Individual column searching (select |
||
| 259 | inputs)</a></li> |
||
| 260 | <li><a href="../api/highlight.html">Highlighting rows and columns</a></li> |
||
| 261 | <li><a href="../api/row_details.html">Child rows (show extra / detailed |
||
| 262 | information)</a></li> |
||
| 263 | <li><a href="../api/select_row.html">Row selection (multiple rows)</a></li> |
||
| 264 | <li><a href="../api/select_single_row.html">Row selection and deletion (single |
||
| 265 | row)</a></li> |
||
| 266 | <li><a href="../api/form.html">Form inputs</a></li> |
||
| 267 | <li><a href="../api/counter_columns.html">Index column</a></li> |
||
| 268 | <li><a href="../api/show_hide.html">Show / hide columns dynamically</a></li> |
||
| 269 | <li><a href="../api/api_in_init.html">Using API in callbacks</a></li> |
||
| 270 | <li><a href="../api/tabs_and_scrolling.html">Scrolling and jQuery UI tabs</a></li> |
||
| 271 | <li><a href="../api/regex.html">Search API (regular expressions)</a></li> |
||
| 272 | </ul> |
||
| 273 | </div> |
||
| 274 | |||
| 275 | <div class="toc-group"> |
||
| 276 | <h3><a href="./index.html">Ajax</a></h3> |
||
| 277 | <ul class="toc active"> |
||
| 278 | <li><a href="./simple.html">Ajax data source (arrays)</a></li> |
||
| 279 | <li><a href="./objects.html">Ajax data source (objects)</a></li> |
||
| 280 | <li><a href="./deep.html">Nested object data (objects)</a></li> |
||
| 281 | <li><a href="./objects_subarrays.html">Nested object data (arrays)</a></li> |
||
| 282 | <li><a href="./orthogonal-data.html">Orthogonal data</a></li> |
||
| 283 | <li><a href="./null_data_source.html">Generated content for a column</a></li> |
||
| 284 | <li><a href="./custom_data_property.html">Custom data source property</a></li> |
||
| 285 | <li class="active"><a href="./custom_data_flat.html">Flat array data source</a></li> |
||
| 286 | <li><a href="./defer_render.html">Deferred rendering for speed</a></li> |
||
| 287 | </ul> |
||
| 288 | </div> |
||
| 289 | |||
| 290 | <div class="toc-group"> |
||
| 291 | <h3><a href="../server_side/index.html">Server-side</a></h3> |
||
| 292 | <ul class="toc"> |
||
| 293 | <li><a href="../server_side/simple.html">Server-side processing</a></li> |
||
| 294 | <li><a href="../server_side/custom_vars.html">Custom HTTP variables</a></li> |
||
| 295 | <li><a href="../server_side/post.html">POST data</a></li> |
||
| 296 | <li><a href="../server_side/ids.html">Automatic addition of row ID attributes</a></li> |
||
| 297 | <li><a href="../server_side/object_data.html">Object data source</a></li> |
||
| 298 | <li><a href="../server_side/row_details.html">Row details</a></li> |
||
| 299 | <li><a href="../server_side/select_rows.html">Row selection</a></li> |
||
| 300 | <li><a href="../server_side/jsonp.html">JSONP data source for remote domains</a></li> |
||
| 301 | <li><a href="../server_side/defer_loading.html">Deferred loading of data</a></li> |
||
| 302 | <li><a href="../server_side/pipeline.html">Pipelining data to reduce Ajax calls for |
||
| 303 | paging</a></li> |
||
| 304 | </ul> |
||
| 305 | </div> |
||
| 306 | |||
| 307 | <div class="toc-group"> |
||
| 308 | <h3><a href="../plug-ins/index.html">Plug-ins</a></h3> |
||
| 309 | <ul class="toc"> |
||
| 310 | <li><a href="../plug-ins/api.html">API plug-in methods</a></li> |
||
| 311 | <li><a href="../plug-ins/sorting_auto.html">Ordering plug-ins (with type |
||
| 312 | detection)</a></li> |
||
| 313 | <li><a href="../plug-ins/sorting_manual.html">Ordering plug-ins (no type |
||
| 314 | detection)</a></li> |
||
| 315 | <li><a href="../plug-ins/range_filtering.html">Custom filtering - range search</a></li> |
||
| 316 | <li><a href="../plug-ins/dom_sort.html">Live DOM ordering</a></li> |
||
| 317 | </ul> |
||
| 318 | </div> |
||
| 319 | </div> |
||
| 320 | |||
| 321 | <div class="epilogue"> |
||
| 322 | <p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full |
||
| 323 | information about its API properties and methods.<br> |
||
| 324 | Additionally, there are a wide range of <a href="http://www.datatables.net/extras">extras</a> and |
||
| 325 | <a href="http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of |
||
| 326 | DataTables.</p> |
||
| 327 | |||
| 328 | <p class="copyright">DataTables designed and created by <a href= |
||
| 329 | "http://www.sprymedia.co.uk">SpryMedia Ltd</a> © 2007-2014<br> |
||
| 330 | DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p> |
||
| 331 | </div> |
||
| 332 | </div> |
||
| 333 | </div> |
||
| 334 | </section> |
||
| 335 | </body> |
||
| 336 | </html> |