add_row.html 14 KB

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