tablesorter/docs/example-widget-ui-theme.html

205 lines
4.8 KiB
HTML
Raw Normal View History

2011-07-27 06:14:20 +00:00
<!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>
2011-09-11 17:51:02 +00:00
<script src="../js/jquery.tablesorter.widgets.js"></script>
2011-07-27 06:14:20 +00:00
<!-- Tablesorter: optional -->
2011-09-11 17:51:02 +00:00
<!-- <script src="../addons/pager/jquery.tablesorter.pager.js"></script> -->
2011-07-27 06:14:20 +00:00
<script id="js">$(function() {
// call the tablesorter plugin and apply the ui theme widget
$("table").tablesorter({
2011-09-11 17:51:02 +00:00
// widget code now contained in the jquery.tablesorter.widgets.js file
2011-09-14 14:20:15 +00:00
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"] }
2011-07-27 06:14:20 +00:00
});
2011-09-11 17:51:02 +00:00
2011-07-27 06:14:20 +00:00
});</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>
2011-09-08 16:28:10 +00:00
<p class="tip">
<em>NOTE!</em> This widget can be applied to the original plugin.
</p>
2011-07-27 06:14:20 +00:00
<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>
2011-09-11 17:51:02 +00:00
<h1>Page Header</h1>
<div>
<pre class="html">&lt;!-- ui theme stylesheet - contents shown below --&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;../css/ui/style.css&quot;&gt;
&lt;!-- jQuery UI theme (cupertino example here) --&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/cupertino/jquery-ui.css&quot;&gt;
&lt;!-- tablesorter plugin --&gt;
&lt;script src=&quot;../js/jquery.tablesorter.js&quot;&gt;&lt;/script&gt;
&lt;!-- tablesorter widget file - loaded after the plugin --&gt;
&lt;script src=&quot;../js/jquery.tablesorter.widgets.js&quot;&gt;&lt;/script&gt;</pre>
</div>
2011-07-27 06:14:20 +00:00
<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 {
2011-09-14 14:20:15 +00:00
font-family: arial;
margin: 10px 0pt 15px;
font-size: 8pt;
width: 100%;
text-align: left;
padding: 5px;
2011-07-27 06:14:20 +00:00
}
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
2011-09-14 14:20:15 +00:00
border-collapse: collapse;
font-size: 8pt;
padding: 4px;
2011-07-27 06:14:20 +00:00
}
table.tablesorter thead tr .header {
2011-09-14 14:20:15 +00:00
background-repeat: no-repeat;
background-position: center right;
cursor: pointer;
2011-07-27 06:14:20 +00:00
}
table.tablesorter tbody td {
2011-09-14 14:20:15 +00:00
padding: 4px;
vertical-align: top;
2011-07-27 06:14:20 +00:00
}
2011-09-14 14:20:15 +00:00
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;
2011-07-27 06:14:20 +00:00
}</pre>
</div>
<h1>HTML</h1>
<div id="html">
<pre class="html"></pre>
</div>
<div class="next-up">
<hr />
2011-08-04 06:24:26 +00:00
Next up: <a href="example-parsers-class-name.html">Basic: Disable or set the column parser using class names &rsaquo;&rsaquo;</a>
2011-07-27 06:14:20 +00:00
</div>
</div>
</body>
</html>