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

261 lines
7.1 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 -->
2012-05-11 17:46:54 +00:00
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
2011-07-27 06:14:20 +00:00
<!-- 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 -->
2012-01-22 15:02:02 +00:00
<link class="ui-theme" rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/cupertino/jquery-ui.css">
<link class="ui-theme" rel="stylesheet" href="../css/ui/style.css">
2012-01-30 16:07:36 +00:00
<link class="theme" rel="stylesheet" href="../css/blue/style.css">
<link class="theme" rel="stylesheet" href="../css/green/style.css">
2012-01-22 15:02:02 +00:00
2011-07-27 06:14:20 +00:00
<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({
2012-03-07 18:06:35 +00:00
widthFixed: true,
2011-09-16 15:43:09 +00:00
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'],
2011-09-16 15:43:09 +00:00
2012-03-07 18:06:35 +00:00
widgetOptions : {
// adding zebra striping, using content and default styles - the ui css removes the background from default
// even and odd class names included for this demo to allow switching themes
zebra : ["ui-widget-content even", "ui-state-default odd"],
2011-09-16 15:43:09 +00:00
2012-03-07 18:06:35 +00:00
// change default uitheme icons - find the full list of icons here: http://jqueryui.com/themeroller/ (hover over them for their name)
// default icons: ["ui-icon-arrowthick-2-n-s", "ui-icon-arrowthick-1-s", "ui-icon-arrowthick-1-n"]
// ["up/down arrow (cssHeaders/unsorted)", "down arrow (cssDesc/descending)", "up arrow (cssAsc/ascending)" ]
uitheme : ["ui-icon-carat-2-n-s", "ui-icon-carat-1-s", "ui-icon-carat-1-n"]
}
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>
2012-01-22 15:02:02 +00:00
<style>
#switcher { display: inline-block; padding-bottom: 5px; }
</style>
2011-07-27 06:14:20 +00:00
<script>
$(function() {
// Theme switcher
// ********************
$('#switcher').themeswitcher();
2012-01-22 15:02:02 +00:00
$('link.theme').each(function(){ this.disabled = true; });
2012-01-30 16:07:36 +00:00
2012-01-22 15:02:02 +00:00
$('select').change(function(){
var theme = $(this).val().toLowerCase(),
files = $('link.theme, link.ui-theme'); // ui-theme is added by the themeswitcher
files.each(function(){ this.disabled = true; });
files.filter('[href*="' + theme + '"]').each(function(){ this.disabled = false; });
2012-01-22 15:02:02 +00:00
});
2011-07-27 06:14:20 +00:00
});
</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">
2011-09-08 16:28:10 +00:00
<p class="tip">
2012-03-07 18:06:35 +00:00
<em>NOTE!</em>
<ul>
<li>This widget can be applied to the original plugin. The code is in the "jquery.tablesorter.widgets.js" file.</li>
<li>The original "widgetUitheme" option has been replaced by "widgetOptions.uitheme". See the javascript block below for more details. <span class="tip"><em>New! v2.1</em></span></li>
<li>If the "widgetUitheme" option exists, it will over-ride this newer "widgetOptions.uitheme" option in order to maintain backwards compatibility.</li>
2012-05-11 17:46:54 +00:00
<li>The latest version of jQuery UI appears to need jQuery 1.4+ or script errors will break the plugin.</li>
2012-03-07 18:06:35 +00:00
</ul>
2011-09-08 16:28:10 +00:00
</p>
2011-07-27 06:14:20 +00:00
<h1>Demo</h1>
2012-01-22 15:02:02 +00:00
jQuery UI Theme:
<div id="switcher"></div>
<br>
Tablesorter Theme:
<select>
<option>UI</option>
<option>Blue</option>
<option>Green</option>
</select>
2011-07-27 06:14:20 +00:00
<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
}
2012-01-30 16:07:36 +00:00
table.tablesorter thead tr th {
2011-09-14 14:20:15 +00:00
background-repeat: no-repeat;
background-position: center right;
cursor: pointer;
2012-01-22 15:02:02 +00:00
white-space: normal;
2012-01-30 16:07:36 +00:00
/* UI hover and active states make the font normal and the table resizes, this fixes it */
font-weight: bold !important;
2011-07-27 06:14:20 +00:00
}
2012-03-07 18:06:35 +00:00
table.tablesorter thead tr th .tablesorter-inner {
2012-01-30 16:07:36 +00:00
position: relative;
padding-right: 20px; /* wider than the icon */
2011-07-27 06:14:20 +00:00
}
2012-01-30 16:07:36 +00:00
table.tablesorter thead tr th .ui-icon {
2012-01-22 15:02:02 +00:00
position: absolute;
right: 3px;
top: 50%;
margin-top: -8px; /* half the icon height; older IE doesn't like this */
2011-09-14 14:20:15 +00:00
}
2012-01-30 16:07:36 +00:00
table.tablesorter tbody td {
padding: 4px;
vertical-align: top;
}
2011-09-14 14:20:15 +00:00
/* This allows you to use ui-state-default as the zebra stripe color */
table.tablesorter tr.ui-state-default {
background-image: url();
}
/* filter widget */
2012-03-07 18:06:35 +00:00
table.tablesorter thead input.tablesorter-filter {
width: 95%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
2011-09-14 14:20:15 +00:00
}
2012-03-07 18:06:35 +00:00
table.tablesorter thead tr.tablesorter-filter, table.tablesorter thead tr.tablesorter-filter td {
2011-09-14 14:20:15 +00:00
text-align: center;
2012-03-07 18:06:35 +00:00
}
/* optional disabled input styling */
table.tablesorter thead tr.tablesorter-filter input.disabled {
opacity: 0.5;
filter: alpha(opacity=50);
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-10-26 06:50:02 +00:00
Next up: <a href="example-widget-resizable.html">Resizable Columns widget &rsaquo;&rsaquo;</a>
2011-07-27 06:14:20 +00:00
</div>
</div>
</body>
</html>