Notes

  • In v2.19.0, the refreshColumnSelector method has been updated to allow passing a parameter. Pass an array of zero-based column indexes of columns to show, or any non-array to enable auto mode (if available).
  • In v2.18.4, added columnSelector_cssChecked option which contains the class name added to checked inputs. This helps fix an issue in Chrome that rears it's ugly head when trying to use input:checked to change a Font Awesome icon. See this demo by TheSin which uses this option to change the checkbox style.
  • In v2.17.0, a method to refresh the column selector was added.

  • This widget will only work in tablesorter version 2.8+ and jQuery version 1.7+.
  • This widget may not work properly if the table contains rows with rowspan or colspan settings.
  • The responsive part of this widget:
    • Uses similar parameters as those used by jQuery mobile to set column priority.
    • The column priorities range from 1 to 6, with 1 having the highest priority. As the browser window shrinks, lower priority (higher numbers) columns will be hidden first until all numbered priority columns are hidden.
    • Any named data-priority, other than the numbers 1 - 6, (e.g. "critical" or "persistent") will be treated as a column which will not be included in the column selector.
    • Note that this widget uses media queries, which will not work in IE8 and older browsers.
  • The selector code uses css selectors, for optimal speed, to hide/show columns. These selectors will not work in IE8 and older browsers.
  • The column button & popup is completely customizable, and in this demo it includes css that may not work properly in older versions of IE.

Options

Column selector widget default options (added inside of tablesorter widgetOptions)

TIP! Click on the link in the "Option" column to reveal full details (or toggle|show|hide all) or double click to update the browser location.
OptionDescription
Target an element within the current page where the column selector will be inserted.

  • This setting is optional. If not set, you can use the following function to attach it to another element - see the Bootstrap example below
    $.tablesorter.columnSelector.attachTo( $('table'), '.selector-target' );
  • This can be either a jQuery selector string ( e.g. '#columnSelector' )
  • or, a jQuery object ( e.g. $('#columnSelector') ).
Default value: null
Assigns a column status for each selector

  • To disable, or remove a column from the column selector, include the key word "disable" - this is one of many ways to remove a column from the column selector popup
  • Set a column status to true to initially display a column. This is the default for undefined columns.
  • Set a column status to false to initially hide a column.
  • Examples:
    widgetOptions : {
      columnSelector_columns : {
        0 : "disable", /* disable; i.e. remove column from selector */
        1 : false,     /* start with column hidden */
        2 : true,      /* start with column visible; default for undefined columns */
      }
    }
  • *NOTE* Prior to v2.15.6, using these extra methods and setting a column to "false" would remove it from the selector. Now, it is more consistent with this columns option - set the appropriate method to "disable" to remove a column, "false" to initially hide a column and "true" to keep the column in an initially visible state.

    In v2.15.6, the following methods in order of priority are now available (set to true, false or disable):
    • jQuery data data-columnSelector="true" or data-columnSelector="false".
    • metadata class="{ columnSelector : true }" or class="{ columnSelector : false }".
    • headers option headers : { 0 : { columnSelector: true } } or headers : { 0 : { columnSelector: false } }.
    • header class name class="columnSelector-true" or class="columnSelector-false".
*NOTE* Setting a column to initially be visible (true) or invisible (false) will be overridden by the users saved selections if the columnSelector_saveColumns option is true.

Default value: {}; empty object
Save the current manually set column status and the table's responsive ("auto") state (v2.15.7).

This option requires the storage utility contained within the tablesorter widgets file (jquery.tablesorter.widgets.js).

Default value: true
This option defines the markup used for each column selector within the popup.

The only available parameter is the {name} string which will be replaced with the appropriate column name/title.

An <input type="checkbox"> is required within this setting! The label element is optional.

Default value: '<label><input type="checkbox">{name}</label>'
The data-attribute within the table header cell which contains an alternate column selector name.

  • If the header cell does not have this attribute defined, the column selector name will be taken from the header cell internal text.
  • If defined, the text contained within this attribute will replace the {name} string within the layout option above.
Default value: 'data-selector-name'
Set this option to add (true) or not add (false) the media query functionality of this widget.

When true, an "auto" checkbox is included along with the column checkboxes:
  • When the "auto" checkbox is checked, all column checkboxes are disabled and media queries are active (columns will hide or show based on the browser width).
  • If "auto" is unchecked, media queries are disabled and column (non-critial/not disabled) visibility is based on the column checkbox setting.
Default value: true
When the media query checkbox is added (it also uses the columnSelector_layout markup), this is the name that is added.

Set as "Auto" to signify to the user that columns disappearing and/or reappearing is automatically done.

Default value: 'Auto: '
Set this option to false to start with the media query disabled (manual column selection mode).

Default value: true
This option defines the media query breakpoints with which to use when a column with the associated priority is hidden or revealed.

  • For example, the last entry "70em" (1,120px) is assigned to data-priority 6. When the browser width is below this dimension, all columns with a data-priority of six will be hidden. Then when a browser width less than "60em" (960px) is reached, all columns of data-priority 5 and above will be hidden. At "50em" (800px), all columns of data-priority 4 and above are hidden, etc.
  • Adjust these values as desired, but a maximum of six data-priorities is set.
Default value: [ "20em", "30em", "40em", "50em", "60em", "70em" ]
This is the assigned data-attribute which contains the defined data priority for a table column

  • Values of 1 through 6 set the breakpoints of that particular column.
  • A value of 1 has the highest priority, meaning it is the last column(s) to be hidden when the browser width goes below "20em" (320px).
  • A value of 7 has the lowest priority, meaning it is the first column(s) to be hidden when the browser width goes below "70em" (1,120px).
  • Any named priority value, (e.g. "critical" or "persistent") will flag the widget to remove that column from the selector list.
  • Undefined priorities will default to a priority value of 1.
Default value: 'data-priority'
This class name is added to the input checkbox when it is checked

This was added because we found an issue in the latest version of Chrome where the css selector input:checked was not correctly modifying the displayed Font Awesome replacement icon when the checkbox was toggled.

Use input.checked (or whatever value setting this class name option contains to get around this issue). See this demo by TheSin which uses this option to change the checkbox style.

Default value: 'checked'

Methods

Refresh the breakpoints and selected columns using this method (v2.17.0):

$('table').trigger('refreshColumnSelector');

In v2.19.0, this method will now accept a parameter.

  • The parameter can be either an array of zero-based column indexes to toggle columns on and off:
    $('table').trigger('refreshColumnSelector', [ [2,3,4] ]);
    Note
    • Passing an array will turn "auto" mode off.
    • Make sure to wrap the array inside another array.
    • Columns marked as "critical" or "disable" will never get toggled off using this method.

  • Or, set the parameter to any non-array value to turn the "auto" mode on - this only works if the columnSelector_mediaquery is set to true:
    $('table').trigger('refreshColumnSelector', true);

Removing a column from the selector

This is probably overkill, but there are numerous ways to remove a column from the selection popup (v2.15.6):
  • Setting the data-priority to any non-numerical name (e.g. "critical" or "persistent").
  • Setting the column selector widget columns option columnSelector_columns : { 0 : 'disable' }.
  • The following methods, added to the header cell, in order of priority:
    • jQuery data data-columnSelector="disable".
    • metadata class="{ columnSelector : disable }" (requires the metadata plugin).
    • headers option headers : { 0 : { columnSelector: 'disable' } }.
    • header class name class="columnSelector-disable".
* *NOTE* Prior to v2.15.6, setting these methods to "false" would remove it from the selector. Now, they must be set to "disable" to remove the column from the selector, this was done to make it more consistent with the columnSelector_columns setting.

Demo

CSS only popup

(When "Auto" is set, the table becomes responsive; resize the browser window to see it work)
Name Major Sex English Japanese Calculus Geometry
NameMajorSexEnglishJapaneseCalculusGeometry
Student03Languagesfemale85958085
Student04Languagesmale6055100100
Student05Languagesfemale68809580
Student12Mathematicsfemale100757085
Student13Languagesfemale1008010090
Student14Languagesfemale50455590
Student15Languagesmale953510090
Student16Languagesfemale100503070
Student17Languagesfemale801005565
Student18Mathematicsmale30495575
Student19Languagesmale68908870
Student20Mathematicsmale40454080
Student01Languagesmale80707580
Student02Mathematicsmale908810090
Student06Mathematicsmale1009910090
Student07Mathematicsmale85689090
Student08Languagesmale100909085
Student09Mathematicsmale80506575
Student10Languagesmale8510010090
Student11Languagesmale8685100100

Bootstrap Popover

Rank First Name Last Name Age Total Discount Date
1Philip Aaron WongJohnson Sr Esq25$5.9522%Jun 26, 2004 7:22 AM
11AaronHibert12$2.995%Aug 21, 2009 12:21 PM
12Brandon ClarkHenry Jr51$42.2918%Oct 13, 2000 1:15 PM
111PeterParker28$9.9920%Jul 6, 2006 8:14 AM
21JohnHood33$19.9925%Dec 10, 2002 5:14 AM
013ClarkKent Sr.18$15.8944%Jan 12, 2003 11:14 AM
005BruceAlmighty Esq45$153.1944%Jan 18, 2021 9:12 AM
10AlexDumass13$5.294%Jan 8, 2012 5:11 PM
16JimFranco24$14.1914%Jan 14, 2004 11:23 AM
166Bruce LeeEvans22$13.1911%Jan 18, 2007 9:12 AM
100Brenda DexterMcMasters18$55.2015%Feb 12, 2010 7:23 PM
55DennisBronson65$123.0032%Jan 20, 2001 1:12 PM
9MarthadelFuego25$22.0917%Jun 11, 2011 10:55 AM

Css


	

HTML

<h3>CSS only popup</h3>
<!-- This selector markup is completely customizable -->
<div class="columnSelectorWrapper">
	<input id="colSelect1" type="checkbox" class="hidden">
	<label class="columnSelectorButton" for="colSelect1">Column</label>
	<div id="columnSelector" class="columnSelector">
		<!-- this div is where the column selector is added -->
	</div>
</div>

<table class="tablesorter custom-popup">
	<thead>
		<tr>
			<th data-priority="critical">Name</th>
			<!-- Remove column from selection popup by including -->
			<!-- data-priority="Anything other than 1-6" OR data-column-selector="disable" OR  class="columnSelector-disable" -->
			<th class="columnSelector-disable">Major</th>
			<!-- columnSelector-false will initially hide the column -->
			<th class="columnSelector-false" data-priority="6" data-selector-name="Gender">Sex</th>
			<th data-priority="4">English</th>
			<th data-priority="5">Japanese</th>
			<th data-priority="3">Calculus</th>
			<th data-priority="2">Geometry</th>
		</tr>
	</thead>
	<tfoot>
		<tr><th>Name</th><th>Major</th><th>Sex</th><th>English</th><th>Japanese</th><th>Calculus</th><th>Geometry</th></tr>
	</tfoot>
	<tbody>
		<!-- ... -->
	</tbody>
</table>

<h3>Bootstrap Popover</h3>
<!-- Bootstrap popover button -->
<button id="popover" type="button" class="btn btn-default">
	Select Column
</button>

<table class="tablesorter bootstrap-popup">
	<thead>
		<tr>
			<th data-priority="critical">Rank</th>
			<th data-priority="3">First Name</th>
			<th data-priority="critical">Last Name</th>
			<th data-priority="4">Age</th>
			<th data-priority="4">Total</th>
			<th data-priority="5">Discount</th>
			<th data-priority="6">Date</th>
		</tr>
	</thead>
	<tbody>
		<!-- ... -->
	</tbody>
</table>

Javascript