PageRenderTime 33ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/public/assets/global/plugins/datatables/examples/data_sources/server_side.html

https://gitlab.com/ealexis.t/trends
HTML | 310 lines | 278 code | 32 blank | 0 comment | 0 complexity | adaabce1b24a30e5ec9d6de0db013f0b MD5 | raw file
  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. <title>DataTables example - Server-side processing</title>
  8. <link rel="stylesheet" type="text/css" href="../../media/css/jquery.dataTables.css">
  9. <link rel="stylesheet" type="text/css" href="../resources/syntax/shCore.css">
  10. <link rel="stylesheet" type="text/css" href="../resources/demo.css">
  11. <style type="text/css" class="init">
  12. </style>
  13. <script type="text/javascript" language="javascript" src="../../media/js/jquery.js"></script>
  14. <script type="text/javascript" language="javascript" src="../../media/js/jquery.dataTables.js"></script>
  15. <script type="text/javascript" language="javascript" src="../resources/syntax/shCore.js"></script>
  16. <script type="text/javascript" language="javascript" src="../resources/demo.js"></script>
  17. <script type="text/javascript" language="javascript" class="init">
  18. $(document).ready(function() {
  19. $('#example').dataTable( {
  20. "processing": true,
  21. "serverSide": true,
  22. "ajax": "../server_side/scripts/server_processing.php"
  23. } );
  24. } );
  25. </script>
  26. </head>
  27. <body class="dt-example">
  28. <div class="container">
  29. <section>
  30. <h1>DataTables example <span>Server-side processing</span></h1>
  31. <div class="info">
  32. <p>There are many ways to get your data into DataTables, and if you are working with seriously large
  33. databases, you might want to consider using the server-side options that DataTables provides. With
  34. server-side processing enabled, all paging, searching, ordering actions that DataTables performs are
  35. handed off to a server where an SQL engine (or similar) can perform these actions on the large data set
  36. (after all, that's what the database engine is designed for!). As such, each draw of the table will
  37. result in a new Ajax request being made to get the required data.</p>
  38. <p>Server-side processing is enabled by setting the <a href=
  39. "//datatables.net/reference/option/serverSide"><code class="option" title=
  40. "DataTables initialisation option">serverSide<span>DT</span></code></a> option to <code>true</code> and
  41. providing an Ajax data source through the <a href="//datatables.net/reference/option/ajax"><code class=
  42. "option" title="DataTables initialisation option">ajax<span>DT</span></code></a> option.</p>
  43. <p>This example shows a very simple table, matching the other examples, but in this instance using
  44. server-side processing. For further and more complex examples of using server-side processing, please
  45. refer to the <a href="../server_side">server-side processing</a> examples.</p>
  46. </div>
  47. <table id="example" class="display" cellspacing="0" width="100%">
  48. <thead>
  49. <tr>
  50. <th>Name</th>
  51. <th>Position</th>
  52. <th>Office</th>
  53. <th>Extn.</th>
  54. <th>Start date</th>
  55. <th>Salary</th>
  56. </tr>
  57. </thead>
  58. <tfoot>
  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. </tfoot>
  68. </table>
  69. <ul class="tabs">
  70. <li class="active">Javascript</li>
  71. <li>HTML</li>
  72. <li>CSS</li>
  73. <li>Ajax</li>
  74. <li>Server-side script</li>
  75. </ul>
  76. <div class="tabs">
  77. <div class="js">
  78. <p>The Javascript shown below is used to initialise the table shown in this
  79. example:</p><code class="multiline brush: js;">$(document).ready(function() {
  80. $('#example').dataTable( {
  81. &quot;processing&quot;: true,
  82. &quot;serverSide&quot;: true,
  83. &quot;ajax&quot;: &quot;../server_side/scripts/server_processing.php&quot;
  84. } );
  85. } );</code>
  86. <p>In addition to the above code, the following Javascript library files are loaded for use in this
  87. example:</p>
  88. <ul>
  89. <li><a href="../../media/js/jquery.js">../../media/js/jquery.js</a></li>
  90. <li><a href="../../media/js/jquery.dataTables.js">../../media/js/jquery.dataTables.js</a></li>
  91. </ul>
  92. </div>
  93. <div class="table">
  94. <p>The HTML shown below is the raw HTML table element, before it has been enhanced by
  95. DataTables:</p>
  96. </div>
  97. <div class="css">
  98. <div>
  99. <p>This example uses a little bit of additional CSS beyond what is loaded from the library
  100. files (below), in order to correctly display the table. The additional CSS used is shown
  101. below:</p><code class="multiline brush: js;"></code>
  102. </div>
  103. <p>The following CSS library files are loaded for use in this example to provide the styling of the
  104. table:</p>
  105. <ul>
  106. <li><a href=
  107. "../../media/css/jquery.dataTables.css">../../media/css/jquery.dataTables.css</a></li>
  108. </ul>
  109. </div>
  110. <div class="ajax">
  111. <p>This table loads data by Ajax. The latest data that has been loaded is shown below. This data
  112. will update automatically as any additional data is loaded.</p>
  113. </div>
  114. <div class="php">
  115. <p>The script used to perform the server-side processing for this table is shown below. Please note
  116. that this is just an example script using PHP. Server-side processing scripts can be written in any
  117. language, using <a href="//datatables.net/manual/server-side">the protocol described in the
  118. DataTables documentation</a>.</p>
  119. </div>
  120. </div>
  121. </section>
  122. </div>
  123. <section>
  124. <div class="footer">
  125. <div class="gradient"></div>
  126. <div class="liner">
  127. <h2>Other examples</h2>
  128. <div class="toc">
  129. <div class="toc-group">
  130. <h3><a href="../basic_init/index.html">Basic initialisation</a></h3>
  131. <ul class="toc">
  132. <li><a href="../basic_init/zero_configuration.html">Zero configuration</a></li>
  133. <li><a href="../basic_init/filter_only.html">Feature enable / disable</a></li>
  134. <li><a href="../basic_init/table_sorting.html">Default ordering (sorting)</a></li>
  135. <li><a href="../basic_init/multi_col_sort.html">Multi-column ordering</a></li>
  136. <li><a href="../basic_init/multiple_tables.html">Multiple tables</a></li>
  137. <li><a href="../basic_init/hidden_columns.html">Hidden columns</a></li>
  138. <li><a href="../basic_init/complex_header.html">Complex headers (rowspan and
  139. colspan)</a></li>
  140. <li><a href="../basic_init/dom.html">DOM positioning</a></li>
  141. <li><a href="../basic_init/flexible_width.html">Flexible table width</a></li>
  142. <li><a href="../basic_init/state_save.html">State saving</a></li>
  143. <li><a href="../basic_init/alt_pagination.html">Alternative pagination</a></li>
  144. <li><a href="../basic_init/scroll_y.html">Scroll - vertical</a></li>
  145. <li><a href="../basic_init/scroll_x.html">Scroll - horizontal</a></li>
  146. <li><a href="../basic_init/scroll_xy.html">Scroll - horizontal and vertical</a></li>
  147. <li><a href="../basic_init/scroll_y_theme.html">Scroll - vertical with jQuery UI
  148. ThemeRoller</a></li>
  149. <li><a href="../basic_init/comma-decimal.html">Language - Comma decimal place</a></li>
  150. <li><a href="../basic_init/language.html">Language options</a></li>
  151. </ul>
  152. </div>
  153. <div class="toc-group">
  154. <h3><a href="../advanced_init/index.html">Advanced initialisation</a></h3>
  155. <ul class="toc">
  156. <li><a href="../advanced_init/events_live.html">DOM / jQuery events</a></li>
  157. <li><a href="../advanced_init/dt_events.html">DataTables events</a></li>
  158. <li><a href="../advanced_init/column_render.html">Column rendering</a></li>
  159. <li><a href="../advanced_init/length_menu.html">Page length options</a></li>
  160. <li><a href="../advanced_init/dom_multiple_elements.html">Multiple table control
  161. elements</a></li>
  162. <li><a href="../advanced_init/complex_header.html">Complex headers (rowspan /
  163. colspan)</a></li>
  164. <li><a href="../advanced_init/html5-data-attributes.html">HTML5 data-* attributes</a></li>
  165. <li><a href="../advanced_init/language_file.html">Language file</a></li>
  166. <li><a href="../advanced_init/defaults.html">Setting defaults</a></li>
  167. <li><a href="../advanced_init/row_callback.html">Row created callback</a></li>
  168. <li><a href="../advanced_init/row_grouping.html">Row grouping</a></li>
  169. <li><a href="../advanced_init/footer_callback.html">Footer callback</a></li>
  170. <li><a href="../advanced_init/dom_toolbar.html">Custom toolbar elements</a></li>
  171. <li><a href="../advanced_init/sort_direction_control.html">Order direction sequence
  172. control</a></li>
  173. </ul>
  174. </div>
  175. <div class="toc-group">
  176. <h3><a href="../styling/index.html">Styling</a></h3>
  177. <ul class="toc">
  178. <li><a href="../styling/display.html">Base style</a></li>
  179. <li><a href="../styling/no-classes.html">Base style - no styling classes</a></li>
  180. <li><a href="../styling/cell-border.html">Base style - cell borders</a></li>
  181. <li><a href="../styling/compact.html">Base style - compact</a></li>
  182. <li><a href="../styling/hover.html">Base style - hover</a></li>
  183. <li><a href="../styling/order-column.html">Base style - order-column</a></li>
  184. <li><a href="../styling/row-border.html">Base style - row borders</a></li>
  185. <li><a href="../styling/stripe.html">Base style - stripe</a></li>
  186. <li><a href="../styling/bootstrap.html">Bootstrap</a></li>
  187. <li><a href="../styling/foundation.html">Foundation</a></li>
  188. <li><a href="../styling/jqueryUI.html">jQuery UI ThemeRoller</a></li>
  189. </ul>
  190. </div>
  191. <div class="toc-group">
  192. <h3><a href="./index.html">Data sources</a></h3>
  193. <ul class="toc active">
  194. <li><a href="./dom.html">HTML (DOM) sourced data</a></li>
  195. <li><a href="./ajax.html">Ajax sourced data</a></li>
  196. <li><a href="./js_array.html">Javascript sourced data</a></li>
  197. <li class="active"><a href="./server_side.html">Server-side processing</a></li>
  198. </ul>
  199. </div>
  200. <div class="toc-group">
  201. <h3><a href="../api/index.html">API</a></h3>
  202. <ul class="toc">
  203. <li><a href="../api/add_row.html">Add rows</a></li>
  204. <li><a href="../api/multi_filter.html">Individual column searching (text inputs)</a></li>
  205. <li><a href="../api/multi_filter_select.html">Individual column searching (select
  206. inputs)</a></li>
  207. <li><a href="../api/highlight.html">Highlighting rows and columns</a></li>
  208. <li><a href="../api/row_details.html">Child rows (show extra / detailed
  209. information)</a></li>
  210. <li><a href="../api/select_row.html">Row selection (multiple rows)</a></li>
  211. <li><a href="../api/select_single_row.html">Row selection and deletion (single
  212. row)</a></li>
  213. <li><a href="../api/form.html">Form inputs</a></li>
  214. <li><a href="../api/counter_columns.html">Index column</a></li>
  215. <li><a href="../api/show_hide.html">Show / hide columns dynamically</a></li>
  216. <li><a href="../api/api_in_init.html">Using API in callbacks</a></li>
  217. <li><a href="../api/tabs_and_scrolling.html">Scrolling and jQuery UI tabs</a></li>
  218. <li><a href="../api/regex.html">Search API (regular expressions)</a></li>
  219. </ul>
  220. </div>
  221. <div class="toc-group">
  222. <h3><a href="../ajax/index.html">Ajax</a></h3>
  223. <ul class="toc">
  224. <li><a href="../ajax/simple.html">Ajax data source (arrays)</a></li>
  225. <li><a href="../ajax/objects.html">Ajax data source (objects)</a></li>
  226. <li><a href="../ajax/deep.html">Nested object data (objects)</a></li>
  227. <li><a href="../ajax/objects_subarrays.html">Nested object data (arrays)</a></li>
  228. <li><a href="../ajax/orthogonal-data.html">Orthogonal data</a></li>
  229. <li><a href="../ajax/null_data_source.html">Generated content for a column</a></li>
  230. <li><a href="../ajax/custom_data_property.html">Custom data source property</a></li>
  231. <li><a href="../ajax/custom_data_flat.html">Flat array data source</a></li>
  232. <li><a href="../ajax/defer_render.html">Deferred rendering for speed</a></li>
  233. </ul>
  234. </div>
  235. <div class="toc-group">
  236. <h3><a href="../server_side/index.html">Server-side</a></h3>
  237. <ul class="toc">
  238. <li><a href="../server_side/simple.html">Server-side processing</a></li>
  239. <li><a href="../server_side/custom_vars.html">Custom HTTP variables</a></li>
  240. <li><a href="../server_side/post.html">POST data</a></li>
  241. <li><a href="../server_side/ids.html">Automatic addition of row ID attributes</a></li>
  242. <li><a href="../server_side/object_data.html">Object data source</a></li>
  243. <li><a href="../server_side/row_details.html">Row details</a></li>
  244. <li><a href="../server_side/select_rows.html">Row selection</a></li>
  245. <li><a href="../server_side/jsonp.html">JSONP data source for remote domains</a></li>
  246. <li><a href="../server_side/defer_loading.html">Deferred loading of data</a></li>
  247. <li><a href="../server_side/pipeline.html">Pipelining data to reduce Ajax calls for
  248. paging</a></li>
  249. </ul>
  250. </div>
  251. <div class="toc-group">
  252. <h3><a href="../plug-ins/index.html">Plug-ins</a></h3>
  253. <ul class="toc">
  254. <li><a href="../plug-ins/api.html">API plug-in methods</a></li>
  255. <li><a href="../plug-ins/sorting_auto.html">Ordering plug-ins (with type
  256. detection)</a></li>
  257. <li><a href="../plug-ins/sorting_manual.html">Ordering plug-ins (no type
  258. detection)</a></li>
  259. <li><a href="../plug-ins/range_filtering.html">Custom filtering - range search</a></li>
  260. <li><a href="../plug-ins/dom_sort.html">Live DOM ordering</a></li>
  261. </ul>
  262. </div>
  263. </div>
  264. <div class="epilogue">
  265. <p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full
  266. information about its API properties and methods.<br>
  267. Additionally, there are a wide range of <a href="http://www.datatables.net/extras">extras</a> and
  268. <a href="http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of
  269. DataTables.</p>
  270. <p class="copyright">DataTables designed and created by <a href=
  271. "http://www.sprymedia.co.uk">SpryMedia Ltd</a> &#169; 2007-2014<br>
  272. DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
  273. </div>
  274. </div>
  275. </div>
  276. </section>
  277. </body>
  278. </html>