index.html 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. <link rel="stylesheet" type="text/css" href="../resources/syntax/shCore.css">
  8. <link rel="stylesheet" type="text/css" href="../resources/demo.css">
  9. <script type="text/javascript" language="javascript" src="../../media/js/jquery.js"></script>
  10. <script type="text/javascript" language="javascript" src="../resources/syntax/shCore.js"></script>
  11. <script type="text/javascript" language="javascript" src="../resources/demo.js"></script>
  12. <title>DataTables examples - API</title>
  13. </head>
  14. <body class="dt-example">
  15. <div class="container">
  16. <section>
  17. <h1>DataTables example <span>API</span></h1>
  18. <div class="info">
  19. <p>The real power of DataTables can be exploited through the use of the API that it presents. The
  20. DataTables API is designed to be simple, consistent and easy to use. The examples in this section show
  21. how the API may be used.</p>
  22. </div>
  23. </section>
  24. </div>
  25. <section>
  26. <div class="footer">
  27. <div class="gradient"></div>
  28. <div class="liner">
  29. <div class="toc">
  30. <div class="toc-group">
  31. <h3><a href="./index.html">API</a></h3>
  32. <ul class="toc">
  33. <li><a href="./add_row.html">Add rows</a></li>
  34. <li><a href="./multi_filter.html">Individual column searching (text inputs)</a></li>
  35. <li><a href="./multi_filter_select.html">Individual column searching (select
  36. inputs)</a></li>
  37. <li><a href="./highlight.html">Highlighting rows and columns</a></li>
  38. <li><a href="./row_details.html">Child rows (show extra / detailed information)</a></li>
  39. <li><a href="./select_row.html">Row selection (multiple rows)</a></li>
  40. <li><a href="./select_single_row.html">Row selection and deletion (single row)</a></li>
  41. <li><a href="./form.html">Form inputs</a></li>
  42. <li><a href="./counter_columns.html">Index column</a></li>
  43. <li><a href="./show_hide.html">Show / hide columns dynamically</a></li>
  44. <li><a href="./api_in_init.html">Using API in callbacks</a></li>
  45. <li><a href="./tabs_and_scrolling.html">Scrolling and jQuery UI tabs</a></li>
  46. <li><a href="./regex.html">Search API (regular expressions)</a></li>
  47. </ul>
  48. </div>
  49. </div>
  50. <div class="epilogue">
  51. <p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full
  52. information about its API properties and methods.<br>
  53. Additionally, there are a wide range of <a href="http://www.datatables.net/extras">extras</a> and
  54. <a href="http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of
  55. DataTables.</p>
  56. <p class="copyright">DataTables designed and created by <a href=
  57. "http://www.sprymedia.co.uk">SpryMedia Ltd</a> &#169; 2007-2014<br>
  58. DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
  59. </div>
  60. </div>
  61. </div>
  62. </section>
  63. </body>
  64. </html>