2011-07-17 15:01:18 +00:00
<!DOCTYPE html>
< html >
2011-06-22 23:19:27 +00:00
< head >
2011-07-17 15:01:18 +00:00
< meta charset = "utf-8" >
2012-05-19 20:46:14 +00:00
< title > jQuery plugin: Tablesorter 2.0 - Disable sort< / title >
2011-06-22 23:19:27 +00:00
<!-- jQuery -->
2014-05-21 22:09:23 +00:00
< script src = "js/jquery-latest.min.js" > < / script >
2011-06-22 23:19:27 +00:00
<!-- Demo stuff -->
2011-07-17 15:01:18 +00:00
< link rel = "stylesheet" href = "css/jq.css" >
2013-01-26 15:21:13 +00:00
< link href = "css/prettify.css" rel = "stylesheet" >
< script src = "js/prettify.js" > < / script >
2011-07-17 15:01:18 +00:00
< script src = "js/docs.js" > < / script >
2011-06-22 23:19:27 +00:00
<!-- Tablesorter: required -->
2012-09-27 19:57:19 +00:00
< link rel = "stylesheet" href = "../css/theme.blue.css" >
2011-07-17 15:01:18 +00:00
< script src = "../js/jquery.tablesorter.js" > < / script >
2011-06-22 23:19:27 +00:00
2011-07-17 15:01:18 +00:00
< script id = "js" > $ ( f u n c t i o n ( ) {
2012-05-19 20:46:14 +00:00
// BONUS TIP: disable a column using jQuery data directly
// but do it before the table initializes
2014-10-31 02:11:07 +00:00
// this code disables the sort on the "Date" column
2012-05-19 20:46:14 +00:00
$("table thead th:eq(5)").data("sorter", false);
2011-06-22 23:19:27 +00:00
$("table").tablesorter({
2012-09-27 19:57:19 +00:00
theme : 'blue',
2011-06-22 23:19:27 +00:00
headers: {
2014-10-31 02:11:07 +00:00
// disable sorting of the first & second column - before we would have to had made two entries
// note that "first-name" is a class on the span INSIDE the first column th cell
'.first-name, .last-name' : {
2011-06-22 23:19:27 +00:00
// disable it by setting the property sorter to false
sorter: false
}
}
});
});< / script >
< / head >
< body >
2011-07-17 15:01:18 +00:00
< div id = "banner" >
2011-06-22 23:19:27 +00:00
< h1 > table< em > sorter< / em > < / h1 >
2012-05-19 20:46:14 +00:00
< h2 > Disable sort< / h2 >
2011-06-22 23:19:27 +00:00
< h3 > Flexible client-side table sorting< / h3 >
< a href = "index.html" > Back to documentation< / a >
< / div >
< div id = "main" >
2012-05-19 20:46:14 +00:00
< p class = "tip" >
< em > NOTE!< / em >
< ul >
2015-02-05 17:32:49 +00:00
< li > In tablesorter < span class = "version" > v2.18.1< / span > , you can now target a column by the class name of an element inside of a header; note that the span has the targeted class name in the first name column.< / li >
2012-05-19 20:46:14 +00:00
< li > In tablesorter v2.0.5 and older, only the metadata and headers options methods were available.< / li >
2012-09-27 19:57:19 +00:00
< li > In versions 2.3+, columns can be disabled using any of the following methods (they all do the same thing), in order of priority:
2012-05-19 20:46:14 +00:00
< ul >
2012-09-27 19:57:19 +00:00
< li > jQuery data < code > data-sorter="false"< / code > (see the Javascript block below on how to set it directly).< / li >
< li > metadata < code > class="{ sorter: false }"< / code > . This requires the metadata plugin.< / li >
< li > headers option < code > headers : { 0 : { sorter: false } }< / code > .< / li >
< li > header class name < code > class="sorter-false"< / code > .< / li >
2012-05-19 20:46:14 +00:00
< / ul >
< / li >
< / ul >
2014-07-18 01:42:01 +00:00
< p >
2012-05-19 20:46:14 +00:00
2011-06-22 23:19:27 +00:00
< h1 > Demo< / h1 >
2011-07-17 15:01:18 +00:00
< div id = "demo" > < table class = "tablesorter" >
< thead >
< tr >
2014-10-31 02:11:07 +00:00
< th > < span class = "first-name" > First Name< / span > < / th >
< th class = "last-name" > Last Name< / th >
2012-05-19 20:46:14 +00:00
< th data-sorter = "false" > Age< / th >
2011-07-17 15:01:18 +00:00
< th > Total< / th >
2012-05-19 20:46:14 +00:00
< th class = "sorter-false" > Discount< / th >
2011-07-17 15:01:18 +00:00
< 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-06-22 23:19:27 +00:00
< h1 > Javascript< / h1 >
< div id = "javascript" >
2013-01-26 15:21:13 +00:00
< pre class = "prettyprint lang-javascript" > < / pre >
2011-06-22 23:19:27 +00:00
< / div >
< h1 > HTML< / h1 >
< div id = "html" >
2013-01-26 15:21:13 +00:00
< pre class = "prettyprint lang-html" > < / pre >
2011-06-22 23:19:27 +00:00
< / div >
2011-07-17 15:01:18 +00:00
< div class = "next-up" >
< hr / >
2011-10-26 06:50:02 +00:00
Next up: < a href = "example-options-headers-locked.html" > Lock sort order using header options › › < / a >
2011-07-17 15:01:18 +00:00
< / div >
2011-06-22 23:19:27 +00:00
< / div >
< / body >
< / html >