index.html 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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="../../../examples/resources/syntax/shCore.css">
  8. <link rel="stylesheet" type="text/css" href="../../../examples/resources/demo.css">
  9. <script type="text/javascript" language="javascript" src="../../../media/js/jquery.js"></script>
  10. <script type="text/javascript" language="javascript" src="../../../examples/resources/syntax/shCore.js"></script>
  11. <script type="text/javascript" language="javascript" src="../../../examples/resources/demo.js"></script>
  12. <title>FixedColumns examples - FixedColumns examples</title>
  13. </head>
  14. <body class="dt-example">
  15. <div class="container">
  16. <section>
  17. <h1>FixedColumns example <span>FixedColumns examples</span></h1>
  18. <div class="info">
  19. <p>When making use of DataTables' x-axis scrolling feature (<a href=
  20. "//datatables.net/reference/option/scrollX"><code class="option" title=
  21. "DataTables initialisation option">scrollX<span>DT</span></code></a>), you may wish to fix the left or
  22. right most columns in place. This extension for DataTables provides exactly this option (for
  23. non-scrolling tables, please use the <a href="//datatables.net/extensions/fixedheader">FixedHeader
  24. extension</a>, which can fix headers, footers and columns). Key features include:</p>
  25. <ul class="markdown">
  26. <li>Freezes the left most column to the side of the table</li>
  27. <li>Option to freeze two or more columns</li>
  28. <li>Full integration with DataTables' scrolling options</li>
  29. </ul>
  30. </div>
  31. </section>
  32. </div>
  33. <section>
  34. <div class="footer">
  35. <div class="gradient"></div>
  36. <div class="liner">
  37. <div class="toc">
  38. <div class="toc-group">
  39. <h3><a href="./index.html">Examples</a></h3>
  40. <ul class="toc">
  41. <li><a href="./left_right_columns.html">Left and right fixed columns</a></li>
  42. <li><a href="./simple.html">Basic initialisation</a></li>
  43. <li><a href="./two_columns.html">Multiple fixed columns</a></li>
  44. <li><a href="./right_column.html">Right column only</a></li>
  45. <li><a href="./rowspan.html">Complex headers</a></li>
  46. <li><a href="./colvis.html">ColVis integration</a></li>
  47. <li><a href="./server-side-processing.html">Server-side processing</a></li>
  48. <li><a href="./css_size.html">CSS row sizing</a></li>
  49. <li><a href="./size_fixed.html">Assigned column width</a></li>
  50. <li><a href="./size_fluid.html">Fluid column width</a></li>
  51. <li><a href="./col_filter.html">Individual column filtering</a></li>
  52. <li><a href="./bootstrap.html">Bootstrap</a></li>
  53. <li><a href="./index_column.html">Index column</a></li>
  54. </ul>
  55. </div>
  56. </div>
  57. <div class="epilogue">
  58. <p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full
  59. information about its API properties and methods.<br>
  60. Additionally, there are a wide range of <a href="http://www.datatables.net/extras">extras</a> and
  61. <a href="http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of
  62. DataTables.</p>
  63. <p class="copyright">DataTables designed and created by <a href=
  64. "http://www.sprymedia.co.uk">SpryMedia Ltd</a> &#169; 2007-2014<br>
  65. DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
  66. </div>
  67. </div>
  68. </div>
  69. </section>
  70. </body>
  71. </html>