mirror of
https://github.com/DataTables/DataTables.git
synced 2024-12-03 15:24:10 +01:00
6e51a62684
I don't know if there are more to this or if it would break some other rules but as of my testing it should be fine to remove this rule for headers that have no sorting applied to them.
This is the case already for "normal sized" tables as the padding-right rule is only applied if there is a sorting class to the element. But it has been forgotten for the table-sm variant. So there are two options that I can see.
Specify this rule does not apply if there is a sorting_disabled class
Do the same as what was done for the normal sized table in the following commit: 4e611f31ff
97 lines
3.6 KiB
HTML
97 lines
3.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico">
|
|
<meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0">
|
|
<link rel="stylesheet" type="text/css" href="../resources/syntax/shCore.css">
|
|
<link rel="stylesheet" type="text/css" href="../resources/demo.css">
|
|
<script type="text/javascript" language="javascript" src="//code.jquery.com/jquery-1.12.4.js"></script>
|
|
<script type="text/javascript" language="javascript" src="../resources/syntax/shCore.js"></script>
|
|
<script type="text/javascript" language="javascript" src="../resources/demo.js"></script>
|
|
<title>DataTables examples - Basic initialisation</title>
|
|
</head>
|
|
<body class="dt-example">
|
|
<div class="container">
|
|
<section>
|
|
<h1>DataTables example <span>Basic initialisation</span></h1>
|
|
<div class="info">
|
|
<p>DataTables is very simple to use as a jQuery plug-in with a huge range of customisable option. The examples in this section demonstrate basic initialisation of
|
|
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>
|
|
<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>
|
|
</div>
|
|
</div>
|
|
<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>
|
|
<p class="copyright">DataTables designed and created by <a href="http://www.sprymedia.co.uk">SpryMedia Ltd</a> © 2007-2020<br>
|
|
DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</body>
|
|
</html> |