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