mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
212 lines
5.2 KiB
HTML
212 lines
5.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>jQuery plugin: Tablesorter 2.0 - jQuery UI Theme Widget</title>
|
|
|
|
<!-- jQuery -->
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>
|
|
|
|
<!-- Demo stuff -->
|
|
<link rel="stylesheet" href="css/jq.css">
|
|
<script src="js/chili/jquery.chili-2.2.js"></script>
|
|
<script src="js/chili/recipes.js"></script>
|
|
<script src="js/docs.js"></script>
|
|
|
|
<!-- theme switcher -->
|
|
<script src="http://jqueryui.com/themeroller/themeswitchertool/"></script>
|
|
|
|
<!-- Tablesorter: required; also include any of the jQuery UI themes -->
|
|
<link rel="stylesheet" href="../css/ui/style.css">
|
|
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/cupertino/jquery-ui.css">
|
|
<script src="../js/jquery.tablesorter.js"></script>
|
|
<script src="../js/jquery.tablesorter.widgets.js"></script>
|
|
|
|
<!-- Tablesorter: optional -->
|
|
<!-- <script src="../addons/pager/jquery.tablesorter.pager.js"></script> -->
|
|
|
|
<script id="js">$(function() {
|
|
|
|
// call the tablesorter plugin and apply the ui theme widget
|
|
$("table").tablesorter({
|
|
|
|
// widget code now contained in the jquery.tablesorter.widgets.js file
|
|
widgets : ['uitheme', 'zebra'],
|
|
|
|
// adding zebra striping, using content and default styles - the ui css removes the background from default
|
|
widgetZebra: { css: ["ui-widget-content", "ui-state-default"] },
|
|
|
|
// change default uitheme icons - find the full list of icons here: http://jqueryui.com/themeroller/ (hover over them for their name)
|
|
// default icons: { css: ["ui-icon-arrowthick-2-n-s", "ui-icon-arrowthick-1-s", "ui-icon-arrowthick-1-n"] }
|
|
// { css : ["up/down arrow (cssHeaders/unsorted)", "down arrow (cssDesc/descending)", "up arrow (cssAsc/ascending)" ] }
|
|
widgetUitheme: { css: ["ui-icon-carat-2-n-s", "ui-icon-carat-1-s", "ui-icon-carat-1-n"] }
|
|
});
|
|
|
|
});</script>
|
|
|
|
<script>
|
|
$(function() {
|
|
// Theme switcher
|
|
// ********************
|
|
$('#switcher').themeswitcher();
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="banner">
|
|
<h1>table<em>sorter</em></h1>
|
|
<h2>jQuery UI Theme Widget</h2>
|
|
<h3>Flexible client-side table sorting</h3>
|
|
<a href="index.html">Back to documentation</a>
|
|
</div>
|
|
|
|
<div id="main">
|
|
|
|
<div id="switcher"></div>
|
|
|
|
<p class="tip">
|
|
<em>NOTE!</em> This widget can be applied to the original plugin.
|
|
</p>
|
|
|
|
<h1>Demo</h1>
|
|
<div id="demo"><table class="tablesorter">
|
|
<thead>
|
|
<tr>
|
|
<th>First Name</th>
|
|
<th>Last Name</th>
|
|
<th>Age</th>
|
|
<th>Total</th>
|
|
<th>Discount</th>
|
|
<th>Date</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Peter</td>
|
|
<td>Parker</td>
|
|
<td>28</td>
|
|
<td>$9.99</td>
|
|
<td>20%</td>
|
|
<td>Jul 6, 2006 8:14 AM</td>
|
|
</tr>
|
|
<tr>
|
|
<td>John</td>
|
|
<td>Hood</td>
|
|
<td>33</td>
|
|
<td>$19.99</td>
|
|
<td>25%</td>
|
|
<td>Dec 10, 2002 5:14 AM</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Clark</td>
|
|
<td>Kent</td>
|
|
<td>18</td>
|
|
<td>$15.89</td>
|
|
<td>44%</td>
|
|
<td>Jan 12, 2003 11:14 AM</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Bruce</td>
|
|
<td>Almighty</td>
|
|
<td>45</td>
|
|
<td>$153.19</td>
|
|
<td>44%</td>
|
|
<td>Jan 18, 2001 9:12 AM</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Bruce</td>
|
|
<td>Evans</td>
|
|
<td>22</td>
|
|
<td>$13.19</td>
|
|
<td>11%</td>
|
|
<td>Jan 18, 2007 9:12 AM</td>
|
|
</tr>
|
|
</tbody>
|
|
</table></div>
|
|
|
|
|
|
<h1>Page Header</h1>
|
|
<div>
|
|
<pre class="html"><!-- ui theme stylesheet - contents shown below -->
|
|
<link rel="stylesheet" href="../css/ui/style.css">
|
|
<!-- jQuery UI theme (cupertino example here) -->
|
|
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/cupertino/jquery-ui.css">
|
|
|
|
<!-- tablesorter plugin -->
|
|
<script src="../js/jquery.tablesorter.js"></script>
|
|
<!-- tablesorter widget file - loaded after the plugin -->
|
|
<script src="../js/jquery.tablesorter.widgets.js"></script></pre>
|
|
</div>
|
|
|
|
<h1>Javascript</h1>
|
|
<div id="javascript">
|
|
<pre class="js"></pre>
|
|
</div>
|
|
|
|
|
|
<h1>CSS</h1>
|
|
<div>
|
|
<pre class="css">/* jQuery UI Theme required css; as seen in css/ui/style.css file */
|
|
table.tablesorter {
|
|
font-family: arial;
|
|
margin: 10px 0pt 15px;
|
|
font-size: 8pt;
|
|
width: 100%;
|
|
text-align: left;
|
|
padding: 5px;
|
|
}
|
|
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
|
|
border-collapse: collapse;
|
|
font-size: 8pt;
|
|
padding: 4px;
|
|
}
|
|
table.tablesorter thead tr .header {
|
|
background-repeat: no-repeat;
|
|
background-position: center right;
|
|
cursor: pointer;
|
|
}
|
|
table.tablesorter tbody td {
|
|
padding: 4px;
|
|
vertical-align: top;
|
|
}
|
|
table.tablesorter .header .ui-icon {
|
|
display: block;
|
|
float: right;
|
|
}
|
|
|
|
/* This allows you to use ui-state-default as the zebra stripe color */
|
|
table.tablesorter tr.ui-state-default {
|
|
background-image: url();
|
|
}
|
|
/* UI hover and active states make the font normal and the table resizes, this fixes it */
|
|
table.tablesorter th.header {
|
|
font-weight: bold !important;
|
|
}
|
|
|
|
/* filter widget */
|
|
table.tablesorter thead input.filter {
|
|
width: 90%;
|
|
}
|
|
table.tablesorter thead tr.filters, table.tablesorter thead tr.filters td {
|
|
text-align: center;
|
|
}</pre>
|
|
</div>
|
|
|
|
|
|
<h1>HTML</h1>
|
|
<div id="html">
|
|
<pre class="html"></pre>
|
|
</div>
|
|
|
|
<div class="next-up">
|
|
<hr />
|
|
Next up: <a href="example-widget-resizable.html">Resizable Columns widget ››</a>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|
|
|