Subversion Repositories Integrator Subversion

Rev

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 - Nested object data (objects)</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
                "processing": true,
24
                "ajax": "data/objects_deep.txt",
25
                "columns": [
26
                        { "data": "name" },
27
                        { "data": "hr.position" },
28
                        { "data": "contact.0" },
29
                        { "data": "contact.1" },
30
                        { "data": "hr.start_date" },
31
                        { "data": "hr.salary" }
32
                ]
33
        } );
34
} );
35
 
36
        </script>
37
</head>
38
 
39
<body class="dt-example">
40
        <div class="container">
41
                <section>
42
                        <h1>DataTables example <span>Nested object data (objects)</span></h1>
43
 
44
                        <div class="info">
45
                                <p>DataTables has the ability to use data from almost data JSON data source through the use of the
46
                                <a href="//datatables.net/reference/option/columns.data"><code class="option" title=
47
                                "DataTables initialisation option">columns.data<span>DT</span></code></a> option. In its simplest case,
48
                                it can be used to read arbitrary object properties, but can also be extended to <em>n</em> levels of
49
                                nested objects / arrays through the use of standard Javascript dotted object notation. Each dot
50
                                (<code>.</code>) in the <a href="//datatables.net/reference/option/columns.data"><code class="option"
51
                                title="DataTables initialisation option">columns.data<span>DT</span></code></a> option represents
52
                                another object level.</p>
53
 
54
                                <p>In this example <code>hr.position</code> refers to the <code>position</code> property of the
55
                                <code>hr</code> object in the row's data source object, while <code>contact.0</code> refers to the
56
                                first element of the <code>contact</code> array. Any number of dots can be used to obtain deeply nested
57
                                data.</p>
58
 
59
                                <p>The example below shows DataTables reading information for the columns from nested objects and
60
                                arrays, where the structure of the row's data source in this example is:</p>
61
                                <pre>
62
<code class="multiline">{
63
        "name": "Tiger Nixon",
64
        "hr": {
65
                "position": "System Architect",
66
                "salary": "$3,120",
67
                "start_date": "2011/04/25"
68
        },
69
        "contact": [
70
                "Edinburgh",
71
                "5421"
72
        ]
73
}
74
</code>
75
</pre>
76
                        </div>
77
 
78
                        <table id="example" class="display" cellspacing="0" width="100%">
79
                                <thead>
80
                                        <tr>
81
                                                <th>Name</th>
82
                                                <th>Position</th>
83
                                                <th>Office</th>
84
                                                <th>Extn.</th>
85
                                                <th>Start date</th>
86
                                                <th>Salary</th>
87
                                        </tr>
88
                                </thead>
89
 
90
                                <tfoot>
91
                                        <tr>
92
                                                <th>Name</th>
93
                                                <th>Position</th>
94
                                                <th>Office</th>
95
                                                <th>Extn.</th>
96
                                                <th>Start date</th>
97
                                                <th>Salary</th>
98
                                        </tr>
99
                                </tfoot>
100
                        </table>
101
 
102
                        <ul class="tabs">
103
                                <li class="active">Javascript</li>
104
                                <li>HTML</li>
105
                                <li>CSS</li>
106
                                <li>Ajax</li>
107
                                <li>Server-side script</li>
108
                        </ul>
109
 
110
                        <div class="tabs">
111
                                <div class="js">
112
                                        <p>The Javascript shown below is used to initialise the table shown in this
113
                                        example:</p><code class="multiline brush: js;">$(document).ready(function() {
114
        $('#example').dataTable( {
115
                &quot;processing&quot;: true,
116
                &quot;ajax&quot;: &quot;data/objects_deep.txt&quot;,
117
                &quot;columns&quot;: [
118
                        { &quot;data&quot;: &quot;name&quot; },
119
                        { &quot;data&quot;: &quot;hr.position&quot; },
120
                        { &quot;data&quot;: &quot;contact.0&quot; },
121
                        { &quot;data&quot;: &quot;contact.1&quot; },
122
                        { &quot;data&quot;: &quot;hr.start_date&quot; },
123
                        { &quot;data&quot;: &quot;hr.salary&quot; }
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 class="active"><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><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> &#169; 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>