2016-12-02 18:12:34 +01:00
<!DOCTYPE html>
2013-10-16 13:13:30 +02:00
< html >
2016-12-02 18:12:34 +01:00
< head >
< meta charset = "utf-8" >
< link rel = "shortcut icon" type = "image/ico" href = "http://www.datatables.net/favicon.ico" >
2020-05-21 11:25:40 +02:00
< meta name = "viewport" content = "width=device-width, initial-scale=1, minimum-scale=1.0, user-scalable=no" >
2016-12-02 18:12:34 +01:00
< link rel = "stylesheet" type = "text/css" href = "../resources/syntax/shCore.css" >
< link rel = "stylesheet" type = "text/css" href = "../resources/demo.css" >
2020-05-21 11:59:45 +02:00
< script type = "text/javascript" language = "javascript" src = "https://code.jquery.com/jquery-3.5.1.js" > < / script >
2018-06-14 12:03:39 +02:00
< script type = "text/javascript" language = "javascript" src = "../resources/syntax/shCore.js" > < / script >
< script type = "text/javascript" language = "javascript" src = "../resources/demo.js" > < / script >
2016-12-02 18:12:34 +01:00
< title > DataTables examples - Basic initialisation< / title >
< / head >
< body class = "dt-example" >
< div class = "container" >
2015-09-25 10:50:54 +02:00
< section >
2016-12-02 18:12:34 +01:00
< h1 > DataTables example < span > Basic initialisation< / span > < / h1 >
< div class = "info" >
2020-05-21 11:25:40 +02:00
< p > DataTables is a simple-to-use jQuery plug-in with a huge range of customisable options. The examples in this section demonstrate basic initialisation of
2016-12-02 18:12:34 +01:00
DataTables and how it can be easily customised by passing an object with the options you want.< / p >
< / div >
< / section >
< / div >
< section >
< div class = "footer" >
< div class = "gradient" > < / div >
< div class = "liner" >
< div class = "toc" >
< div class = "toc-group" >
< h3 > < a href = "./index.html" > Basic initialisation< / a > < / h3 >
< ul class = "toc" >
< li >
< a href = "./zero_configuration.html" > Zero configuration< / a >
< / li >
< li >
< a href = "./filter_only.html" > Feature enable / disable< / a >
< / li >
< li >
< a href = "./table_sorting.html" > Default ordering (sorting)< / a >
< / li >
< li >
< a href = "./multi_col_sort.html" > Multi-column ordering< / a >
< / li >
< li >
< a href = "./multiple_tables.html" > Multiple tables< / a >
< / li >
< li >
< a href = "./hidden_columns.html" > Hidden columns< / a >
< / li >
< li >
< a href = "./complex_header.html" > Complex headers (rowspan and colspan)< / a >
< / li >
< li >
< a href = "./dom.html" > DOM positioning< / a >
< / li >
< li >
< a href = "./flexible_width.html" > Flexible table width< / a >
< / li >
< li >
< a href = "./state_save.html" > State saving< / a >
< / li >
2020-05-21 12:02:16 +02:00
< li >
< a href = "./data_rendering.html" > Data rendering< / a >
< / li >
2016-12-02 18:12:34 +01:00
< li >
< a href = "./alt_pagination.html" > Alternative pagination< / a >
< / li >
< li >
< a href = "./scroll_y.html" > Scroll - vertical< / a >
< / li >
< li >
< a href = "./scroll_y_dynamic.html" > Scroll - vertical, dynamic height< / a >
< / li >
< li >
< a href = "./scroll_x.html" > Scroll - horizontal< / a >
< / li >
< li >
< a href = "./scroll_xy.html" > Scroll - horizontal and vertical< / a >
< / li >
< li >
< a href = "./comma-decimal.html" > Language - Comma decimal place< / a >
< / li >
< li >
< a href = "./language.html" > Language options< / a >
< / li >
< / ul >
2015-09-25 10:50:54 +02:00
< / div >
2015-09-25 11:08:52 +02:00
< / div >
2016-12-02 18:12:34 +01:00
< div class = "epilogue" >
< p > Please refer to the < a href = "http://www.datatables.net" > DataTables documentation< / a > for full information about its API properties and methods.< br >
Additionally, there are a wide range of < a href = "http://www.datatables.net/extensions" > extensions< / a > and < a href =
"http://www.datatables.net/plug-ins">plug-ins< / a > which extend the capabilities of DataTables.< / p >
2020-03-13 10:25:59 +01:00
< p class = "copyright" > DataTables designed and created by < a href = "http://www.sprymedia.co.uk" > SpryMedia Ltd< / a > © 2007-2020< br >
2016-12-02 18:12:34 +01:00
DataTables is licensed under the < a href = "http://www.datatables.net/mit" > MIT license< / a > .< / p >
< / div >
2013-10-16 13:13:30 +02:00
< / div >
2016-12-02 18:12:34 +01:00
< / div >
< / section >
< / body >
2013-10-16 13:13:30 +02:00
< / html >