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