Help:Sorting: Difference between revisions

From Meta, a Wikimedia project coordination wiki
Content deleted Content added
→‎Dates: To use dates before the year 111, add a multiple of 400, e.g. 6000, to all years, this effectively shifts the range to 1 Jan -5889, 00:00:00 through 31 Dec 4399, 23:59:59, without changing
-ancient junk
(164 intermediate revisions by 68 users not shown)
Line 1: Line 1:
{{languages}}
{{H:h}}
{{H:h}}
[[Help:Table|Tables]] can be made {{mlw|sorting||sortable}} via [[w:client-side JavaScript|client-side JavaScript]] with <code>class="sortable"</code> (in combination with the usual formatting: <code>class="wikitable sortable"</code>). This works in MediaWiki 1.9 and above, which is installed in all Wikimedia projects.
[[Help:Table|Tables]] can be made {{mlw|sorting||sortable}} via [[w:client-side JavaScript|client-side JavaScript]] with <code>class="sortable"</code> (in combination with the usual formatting: <code>class="wikitable sortable"</code>). This works in MediaWiki 1.9 and above, which is installed in all Wikimedia projects.


A sortable table is identified by the arrows in each of its header cells. Clicking them will cause the table rows to sort based on the selected column, in ascending order first, and subsequently toggling between ascending and descending order. Links and other wiki-markup are not possible in headers.
A table that is sortable is identified by arrows to the right of the header in a header cell. A sortable table may be sortable by one or more columns in the table. Clicking an arrow sorts the table rows based on the selected column. Repeated clicking of an arrow changes the sort state in this sequence: Ascending, Descending, Unsorted.


Shift-clicking the arrows of other columns will trigger a secondary sort based on the most recent column on which the shift-click occurred. NB: Shift-clicking capability extends to tertiary and beyond.
Note that all of the below is subject to change due to improvements in the script.


Links and other wiki-markup are not possible in headers.
==JavaScript==
The JavaScript code [http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/skins/common/wikibits.js?view=log wikibits.js] has on each site a copy at
<nowiki>{{SERVER}}/skins-1.5/common/wikibits.js</nowiki>, on this site {{SERVER}}/skins-1.5/common/wikibits.js. In addition a site may have a page [[MediaWiki:Common.js]] which adds and overrides some code.


==Sort modes==
== JavaScript ==
The way items are sorted depends on the [[w:data type|data type]] of the item ''currently'' in the first row. To determine the data type, the following tests are made in order, until one matches. Thus, if "24-12-2007" is the first item, then all items will be compared as dates.


The JavaScript code [https://phabricator.wikimedia.org/source/mediawiki/browse/master/resources/src/jquery.tablesorter/jquery.tablesorter.js jquery.tablesorter.js (source)] of the tablesorter is loaded by the ResourceLoader. Some sites may have a page [[MediaWiki:Common.js]] which adds and overrides some code. Browsers need to support JavaScript and it needs to be enabled for sorting to work.
To force an item to match as text, use the "sms" template, e.g. <code><nowiki>{{sms|101 Dalmatians}}</nowiki></code>


== Sort modes ==
Unfortunately, there's no way to force an item to sort as numeric or date without using custom sort keys (generally by using formatting templates): if the item on the first row to sort does not match a supported format, it will be treated as text, and all the column will be sorted as text, possibly changing the content of the item on the first row so that it will apparently be of a distinct type.
The way items are sorted depends on the [[w:data type|data type]] of the first rows. To determine the data type, the first 5 non-blank rows below the header are tested after loading the page and the most appropriate format is chosen. Mismatches are possible. The sort order of a column can be forced. See the relevant section farther [[#Forcing the sort mode for a column|down]].
:: ''Proposal: we could allow every cells of the table heading row to specify the expected sort mode for all cells on their column. This could be done easily by adding a class attribute on this heading cell, such as class="sort-as-text", class="sort-as-number", or class="sort-as-date", so that the Javascript code would no longer need to ''guess'' the data type of the cell content in the first sortable row. This would also remove the need to use custom key formatting in every data cell to make sure that it will sort as expected.''
Tags such as ''span'' or ''sup'' are ignored when determining data type.
# Date (see also below)
#* Criterion: the first non-blank element is of the form "dd-dd-dddd", "dd-dd-dd", or "dd aaa dddd"
#* Order: if wgContentLanguage != "en" then string "abcdefghij" of length 10 is positioned as "ghijdeab", the string "abcdefghijk" of length 8 as "19ghdeab" if "gh">="50" (string comparison) and "20ghdeab" otherwise (i.e., the assumed format is "DD-MM-YYYY" or "DD-MM-YY"), and the string "dd aaa dddd" with "aaa" an abbreviated month name: chronologically.
#*: ''Proposed internationalisation: month names (or abbreviations) are recognized only in their English form, using only the 3 first letters. There's no way to specify another language/locale which would use incompatible abbreviations, some of them being ambiguous if only 3 characters are considered, such as ''juin'' (June) vs. ''juillet'' (July) in French, where only some months will be recognized correctly. Also dates in ISO format "YYYY-MM-DD" are not recognized correctly.'' For other languages than English, custom hidden sort keys still need to be specified in every cell containing such date formats.
# "Currency" (this mode can be useful for other data also)
#* Criterion: the first non-blank element starts with $, £, €, or ¥
#* Order: numeric, ignoring these symbols and all ordinary letters and commas, but not spaces; note that scientific notation cannot be used, as e and E are removed
# Numeric
#*criterion: the first non-blank element consists of just digits, points, commas, spaces, "+", "-", possibly followed by "e" or "E" and a string consisting of "+", "-", digits
#* Order: if the string starts with a number (where spaces and nbsp's at the start are ignored) the order is numeric according to the first number in the string ([http://www.devguru.com/technologies/ecmascript/QuickRef/parsefloat.html parseFloat] is applied) after removing the commas, if any; it is positioned as zero if it is empty; in other cases (parseFloat returns [[w:NaN|NaN]]), the element is positioned like -∞.
#*: ''Proposed internationalisation: in German etc., treat comma as a decimal point''
# Text (default)
#* Criterion: all other cases; to avoid one of the other modes, start e.g. with a hidden "&"; this can be done conveniently with {{tim|sms}}, which also allows more hidden text, as sortkey; while the similar templates above are called at the end of a table element, call this one at the start
#* Order: after conversion of capitals to lowercase the order is [[w:ASCII|ASCII]] – actually the order is binary, based on [[UTF-16]] code unit values, because this is the way strings compare natively in [[Javascript]]. But some browser ''may ''use their own locale-specific ordering when comparing strings, depending on user's locale preference. There is for now no way to specify a locale explicitly that Javascript can use.
#: Partial list showing the order: <code>!"#$%&'()*+,-./09:;<=>?@[\]^_'az{|}~é&mdash;</code>
#:(see also below; a blank space comes before every other character; an [[w:Non-breaking space|nbsp]] code ''may'' count as a space in some browsers; two adjacent ordinary blank spaces count as one; for multiple blank spaces one can use nbsps or alternate nbsps and ordinary blank spaces)


Tags such as ''span'' or ''sup'' are ignored when determining data type, but reference numbers and additional visible comments are not ignored today.
After sorting, the data type may change, since there is a new item in the first row. This can lead to a cycle of four or even more instead of two. As this is confusing, try and avoid this situation by making sure that every element matches the criterion for the required data type. Using a {{ml|Help:Table|Row_template|row template}} helps.


=== Dates ===
An alternative method of making sure the sort mode of each column is as desired, is creating a first row that determines the sort modes, but in such a way that this row is not displayed and is excluded from sorting, see below.


Various date formats are supported, including those with localized month names.
== Examples ==
On the German Wikipedia, "16. März 2010" is correctly sorted as 2010-03-16


Most other numerical formats are supported as well, including those with different separators (such as . , ' or / );
Text after a number (e.g. a footnote) does not affect the sorting order, if the sorting ''mode'' is numeric. However, if the number at the top has text after it, this makes the sorting mode alphabetic.
On English Wikipedias dates are treated as US-Dates (eg. month-day-year) per default.

=== Numbers ===

The script can recognize numbers with different decimal separators (. and ,) as well as e/E numbers. However, numbers will be sorted alphanumerically (with 9 sorted after 10) unless this default behaviour is overridden. (See below.)

=== Text ===

Text is compared at client-side JavaScript since July 2019 ([https://phabricator.wikimedia.org/rMW1fed6d003dd05efabe38bf5bb8ee3de02fe0481a Commit]) with Intl.Collator. This sort accented characters depend on <code>PageContentLanguage</code> correctly.
But sort of special characters is depend on Browser implementation. Example for Intl.Collator(de):
Firefox52.9: _-—,;:!?.'"()[]{}§@*/\&#%^+±<=>|~∞¢$£¥€0…9²³aä…eé…ö…ß…ü…z
IE11: '-—!"#$%&()*,./:;?@[\]^_{|}~¢£¥€+<=>±≤≥§♠0²³9∞aä…eé…ö…ß…ü…z

Only Android systems use the old sort mode with [[w:UTF-16|UTF-16]] coded characters. Any accented/special characters follow after the basic latin alphabet. This can be changed site wide by posting code like the following inside the [[MediaWiki:Common.js]]:
<pre>
mw.config.set('tableSorterCollation', {'ä':'a', 'ß':'ss', 'þ':'th', 'aa':'å'});
</pre>
Afterwards, all 'Ä' and 'ä' will be sorted as if they were an 'a' etc.
Partial list showing the default order:<br>'''<code>! " # $ % & ' ( ) * + , - . / 0 9 : ; < = > ? @ [ \ ] ^ _ ` A Z a z { | } ~ É é &mdash;</code>'''
* See: [[#Basic alphabetic sorting order]]
* See also: [https://www.mediawiki.org/wiki/Help:Sorting#Sort_order MediaWiki:Help:Sorting#Sort order] (here capital letters like A–Z are sorted after @)

=== Forcing the sort mode for a column ===

The sort mode can be manually specified by putting <code>data-sort-type="…"</code> inside the header of the respective row. This functionality is based on [https://web.archive.org/web/20180924065055/http://tablesorter.com/docs/ tablesorter.com (webarchive)]. The following (case-insensitive) values are valid for data-sort-type:
*text
*number
*IPAddress
*currency
*url
*isoDate
*usLongDate
*date
*time

Example:

<nowiki>{|</nowiki>class="wikitable sortable"
<nowiki>!</nowiki><b style="color:red">data-sort-type="date"</b><nowiki>|Date!!Name!!Height!!</nowiki><b style="color:red">data-sort-type="number"</b><nowiki>|Salary</nowiki>
<nowiki>|-</nowiki>
<nowiki>|01.10.1977||Smith||1.85||1,000.000</nowiki>
<nowiki>|-</nowiki>
<nowiki>|11.6.1972||Ray||1.89||900.000</nowiki>
<nowiki>|-</nowiki>
<nowiki>|1.9.1992||Bianchi||1.72||2,000.50</nowiki>
<nowiki>|}</nowiki>


{|
|- style="vertical-align:top;"
|
{|class="wikitable sortable"
{|class="wikitable sortable"
! data-sort-type="date" | Date!!Name!!Height!!data-sort-type="number" |Salary
!numbers
|-
|-
|01.10.1977||Smith||1.85||1,000.000
|
|-
|-
|11.6.1972||Ray||1.89||900.000
|
|-
|-
|1.9.1992||Bianchi||1.72||2,000.50
| &nbsp;
|-
| -
|-
| 4.0
|-
|192
|-
|123,456.789
|-
|123,456,789
|-
|2,500,000,000
|-
|300,000,000
|-
|3,000,000 abc
|-
|5,000,000
|-
|2,000 def
|-
| -4,000
|-
| aaa
|-
| -9,999
|-
|4,000
|-
|9,999
|-
|800,000
|-
|900,000
|}
|}

|
== Specifying a sort key ==

Sometimes the value of a cell is not correctly parsed or one wants to sort the row in a special way. (e.g. a cell containing 'John Smith' should actually be sorted as 'Smith' and not as 'John')
This can be easily achieved by setting the <code>data-sort-value</code> attribute.

Wiki markup:

<nowiki>{|</nowiki>class="wikitable sortable"
!Name and Surname!!Height
<nowiki>|</nowiki>-
<nowiki>|</nowiki><b style="color:red">data-sort-value="Smith, John"</b>|John Smith||1.85
<nowiki>|</nowiki>-
<nowiki>|</nowiki><b style="color:red">data-sort-value="Ray, Ian"</b>|Ian Ray||1.89
<nowiki>|</nowiki>-
<nowiki>|</nowiki><b style="color:red">data-sort-value="Bianchi, Zachary"</b>|Zachary Bianchi||1.72
<nowiki>|}</nowiki>

This gives:

{|class="wikitable sortable"
{|class="wikitable sortable"
!Name and Surname!!Height
!numbers
|-
|-
|data-sort-value="Smith, John"|John Smith||1.85
|123 564,589.7e12
|-
|-
|data-sort-value="Ray, Ian"|Ian Ray||1.89
|9
|-
|-
|data-sort-value="Bianchi, Zachary"|Zachary Bianchi||1.72
| -80
|-
|80 abc 5
|-
|abc 80
|-
|70
|-
|600
|}
|}

|
Note, however, that this makes use of a new feature in HTML5, which is enabled by default in MediaWiki (including WMF wikis since September 2012 cfr. [[bugzilla:27478]]).
The old version was to set hidden sort key with {{tiw|sort}}.
See also [[mw:Help:Sorting#Specifying a sort key|mediawiki.org]].

== Controlling sorting and display ==

If some Text undesired for sorting but needed for display, force the sort mode with <code>data-sort-type="…"</code> and write text ''after'' values (e.g. "200 approx", or reference tags "100<sup style="color:blue" title="link to Reference">[1]</sup>"). Empty cell is treated as "-Infinity" when sorting numerically. <!-- See e.g. [[Help:Sorting/countries]]. -->

In the case of a cell containing a range of dates or numbers (e.g. from 2 to 5), specify a <code>data-sort-value="…"</code>.

== Examples ==

The first column demonstrates how plain numbers are detected and sorted as numbers.
The second column shows that with <code>data-sort-type="number"</code> in table header more content detected as numbers.
The fourth column shows that with <code>data-sort-value="…"</code> a numeric sortvalue is defined, independent of the cell content.
{|class="wikitable sortable"
{|class="wikitable sortable"
! numbers !! data-sort-type="number"| <code>data-sort-type="number"</code> !!class="unsortable"| !! data-sort-type="number"| <code>data-sort-type="number"</code>
!first alphabetic, later also numeric mode
|-
|-
| <span title="-8000">-8e3<span> || <span title="-8000">-8 e3<span> || || <span title="-8000">-8 e3<span>
|123.4 ghi
|-
|-
| <span title="-0.003">-3e-3</span> || <span title="-0.003">-3 e-3</span> || || <span title="-0.003">-3 e-3</span>
|2,500,000,000
|-
|-
| 2.000 || <span title="sorted as 2">2-5 km²</span> || <code>data-sort-value="3.5"</code> ||data-sort-value="3.5"| <span title="sorted as 3.5">2-5 km²</span>
|300,000,000
|-
|-
| 3.99 || 3.99 km² || || 3.99 km²
|3,000,000 abc
|-
|-
| 4 || 4 km² || || 4 km²
|5,000,000
|-
|-
| 90 % || 90 Percent || <code>data-sort-value="90"</code> ||data-sort-value="90"| about 90 Percent
|2,000 def
|-
|-
| <span title="100">1E2<span> || 100<sup style="color:blue" title="link to Reference">[1]</sup> || || 100<sup style="color:blue" title="link to Reference">[1]</sup>
|4,000
|-
|-
| 1,000,000.0 || 1 000 000.0 || <code>data-sort-value="1e6"</code> ||data-sort-value="1e6"| one Million
|9,999
|-
|800,000
|-
|900,000
|}
|}
The thousand separator(,) and digits separator(.) depends on language specific configuration of the Mediawiki software.
|}
Currency symbols before or after numbers or the %-symbol will be sorted numerical.

{|
{|
|- style="vertical-align:top;"
|- style="vertical-align:top;"
Line 152: Line 164:
!currencies
!currencies
|-
|-
|9 €
|€ 9
|-
|-
|80
|80
|-
|-
|70
|70
|-
|-
|600
|600
|}
|}
|
|
Line 186: Line 198:
|
|
{|class="wikitable sortable"
{|class="wikitable sortable"
!percent
!comparison
|-
|-
|a 9
|9 %
|-
|-
|a 80
|80 %
|-
|-
|a 70
|70 %
|-
|-
|a 600
|600 %
|}
|}
|
|
{|class="wikitable sortable"
{|class="wikitable sortable"
!numbers
!comparison
|-
|-
| −7e270
|e 9
|-
|-
| {{#expr:-.000000000001/7}}
|e 80
|-
|-
|e 70
| 999e9
|-
|-
|e 600
| 7e270
|}
|}
|}
|}


== Secondary sort key ==
The example with "a" gives alphabetic sorting; that with "e" ditto, the data are not mistaken for numbers in scientific format.

It is possible to sort by column A (primary sort key), while for equal values in column A, sort by column B (secondary sort key): first sort by A by clicking the sort button of column A once or twice, then, while holding the shift-key, click the sort button of column B once or twice.

Example:

First click on column Text and then, while holding the shift-key, on Numbers, you'll see that the ordering is on Text (1), Numbers (2).


{|
|- style="vertical-align:top;"
|
{|class="wikitable sortable"
{|class="wikitable sortable"
!Numbers!!Text!!Dates!!Currency!!More text
!mixed notations
|-
|-
|4||a||01.Jan.2005||4.20||row 1
| {{#expr:1000000000000000000/7}}
|-
|-
|5||a||05/12/2006||7.15||row 2
| 1000000000000000000
|-
|-
|1||b||02-02-2004||5.00||row 3
| -1000000000000000000
|-
|-
|1||a||02-02-2004||5.00||row 4
| .0000000000000000001
|-
|-
|2||x||13-apr-2005||||row 5
| -.0000000000000000001
|-
|-
|2||a||13-apr-2005||||row 6
| {{#expr:-1000000000000000000/7}}
|-
|-
|3||a||17.aug.2006||6.50||row 7
| {{#expr:.000000000001/7}}
|-
|-
|3||z||25.aug.2006||2.30||row 8
| {{#expr:-.000000000001/7}}
|-
|-
|3||z||28.aug.2006||5.50||row 9
|89 123 456 788
|-
|-
|3||z||31.aug.2006||3.77||row 10
|89,123,456,789
|-
|-
|3||z||01.sep.2006||1.50||row 11
|333
|-
|-
!Bottom!!!!!!!!
|1e10
|-
|e 9
|-
|e 80
|-
|e 70
|-
|e 600
|-
|999e9
|-
|88e80
|-
|7e270
|-
|999e-9
|-
|88e-80
|-
|7e-270
|-
| -999e9
|-
| −999e9
|-
| -88e80
|-
| -7e270
|-
| -999e-9
|-
| -88e-80
|-
| -7e-270
|-
|e3
|-
| -e3
|-
|1e3
|-
|e9
|-
|e80
|-
|e270
|-
|6e11
|-
|-
|8e11
|}
|}
|
{|class="wikitable sortable"
!first number in each element counts
|-
|7-4
|-
|2
|-
|4
|-
|22/7
|-
|111
|}
|
{|class="wikitable sortable"
!percentage
|-
|7%
|-
|2
|-
|4
|-
|22
|-
|111
|}
|
{|class="wikitable sortable"
!mixed notations
|-
| 14
|-
| -14
|-
| 11
|-
| -12 (retrograde)
|-
| 12 or 13
|-
| 12 (?)
|-
| ca. 12
|-
| 12 (approx.)
|-
| ?
|}
|}

The first example demonstrates that text is positioned at zero, and that e.g. e3 for 1000 is not allowed; use 1e3 instead. It also shows that "-" should be used, not "−".

The second example shows that expressions are not sorted according to their evaluated value, but according to the first number.

The third example shows that a percentage is accepted for numeric sorting mode, but ignored in the actual sorting, so if a column contains percentages, ''all'' numbers have to be written as a percentage.

The fourth example shows again that "ca. 12" sorts at 0, as opposed to 12 with some text after it, which sorts at 12. In case such an element arrives at the top of a column, it causes alphabetic sorting mode.


== Additional features ==
== Additional features ==
Line 357: Line 264:


Sometimes it is helpful to exclude the last row of a table from the sorting process.
Sometimes it is helpful to exclude the last row of a table from the sorting process.
This can be achieved by setting <code>class="sortbottom"</code> on the last row. Declaring the last row as a footer (with <code>!</code>) will also exclude it from sorting.


Wiki markup:
This can be achieved using <code>class="sortbottom"</code> on the desired table row (line starting with <code>|-</code>).

'''Wiki markup'''


<nowiki>{|</nowiki>class="wikitable sortable"
<nowiki>{|</nowiki>class="wikitable sortable"
Line 370: Line 276:
<nowiki>|-</nowiki>
<nowiki>|-</nowiki>
<nowiki>|</nowiki>Mario||Bianchi||1.72
<nowiki>|</nowiki>Mario||Bianchi||1.72
<nowiki>|-</nowiki><b style="color:red">class="sortbottom"</b>
<nowiki>|-</nowiki> <b style="color:red">class="sortbottom"</b>
<nowiki>|</nowiki>||Average:||1.82
! !!</b>Average:||1.82
<nowiki>|}</nowiki>
<nowiki>|}</nowiki>


'''What it looks like in your browser'''
What it looks like in your browser:


{|class="wikitable sortable"
{|class="wikitable sortable"
Line 384: Line 290:
|-
|-
|Mario||Bianchi||1.72
|Mario||Bianchi||1.72
|-
|-class="sortbottom"
|||Average:||1.82
! !!Average:||1.82
|}
|}


=== Excluding the first row from sorting ===
More generally, one or more lines at the bottom marked with <code>class="sortbottom"</code> are sorted among themselves, but stay at the bottom. Thus it is not possible to keep multiple lines fixed at the bottom:

The same can be applied for first rows as well, by setting <code>class="sorttop"</code>.

Wiki markup:

<nowiki>{|</nowiki>class="wikitable sortable"
<nowiki>!</nowiki>Name!!Surname!!Height
<nowiki>|-</nowiki> <b style="color:red">class="sorttop"</b>
! !!Average:||1.82
<nowiki>|-</nowiki>
<nowiki>|</nowiki>John||Smith||1.85
<nowiki>|-</nowiki>
<nowiki>|</nowiki>Ron||Ray||1.89
<nowiki>|-</nowiki>
<nowiki>|</nowiki>Mario||Bianchi||1.72
<nowiki>|}</nowiki>


{|class="wikitable sortable"
{|class="wikitable sortable"
|+''Using more than one "sortbottom", failing to keep these lines fixed''
!Name!!Surname!!Height
!Name!!Surname!!Height
|- class="sorttop"
! !!Average:||1.82
|-
|-
|John||Smith||1.85
|John||Smith||1.85
|-
|-
|Ron||Ray||1.89
|Ron||Ray||1.89
|-
|-class="sortbottom"
|||Average:||1.82
|Mario||Bianchi||1.72
|-class="sortbottom"
!Name!!Surname!!Height
|}
|}

==== Excluding the first row from sorting ====

As follows from what was mentioned above, the first row of a table can be made non-sortable (the code <code><s>class="sorttop"</s></code> not being valid) by marking every other row except the first with <code>class="sortbottom"</code>. This first row can either be a normal visible row (to provide annotation for the headers) or a hidden row (with each element marked with <code><nowiki><span style="display:none">...</span></nowiki></code>) to ensure that each column has the desired sort mode.


=== Making a column unsortable ===
=== Making a column unsortable ===
Line 411: Line 328:
If you want a specific column not to be sortable, specify <code>class="unsortable"</code> in the attributes of its header cell.
If you want a specific column not to be sortable, specify <code>class="unsortable"</code> in the attributes of its header cell.


'''Wiki markup'''
Wiki markup:


<nowiki>{|</nowiki>class="wikitable sortable"
<nowiki>{|</nowiki>class="wikitable sortable"
Line 425: Line 342:
<nowiki>|-</nowiki>
<nowiki>|-</nowiki>
<nowiki>|</nowiki>5||V||05/12/2006||7.15||See?
<nowiki>|</nowiki>5||V||05/12/2006||7.15||See?
<nowiki>|-</nowiki>class="sortbottom"
<nowiki>|-</nowiki>
<nowiki>!</nowiki>Total: 15!!!!!!Total: 29.55!!
<nowiki>!</nowiki>Total: 15!!!!!!Total: 29.55!!
<nowiki>|-</nowiki>
<nowiki>|-</nowiki>
<nowiki>|}</nowiki>
<nowiki>|}</nowiki>


'''What it looks like in your browser'''
What it looks like in your browser:


{|class="wikitable sortable"
{|class="wikitable sortable"
Line 444: Line 361:
|-
|-
|5||V||05/12/2006||7.15||See?
|5||V||05/12/2006||7.15||See?
|-
|-class="sortbottom"
!Total: 15!!!!!!Total: 29.55!![http://www.joostdevalk.nl/code/sortable-table/ Original example]
!Total: 15!!!!!!Total: 29.55!![http://www.joostdevalk.nl/code/sortable-table/ Original example]
|-
|-
|}
|}


=== Striping ===
=== Keeping some rows together ===
The JavaScript that makes tables sortable can add <code>.odd</code> and <code>.even</code> classes to the rows of the resulting table.


If you want that a row will always be below the row just above it and will follow it around, no matter how the sorting is applied, specify <code>class="expand-child"</code> in the attribute of this row.
As of August 2010, this feature is '''disabled by default''' (<code>var ts_alternate_row_colors = false;</code> in [[svn:trunk/phase3/skins/common/wikibits.js|wikibits.js]]) and can be enabled with the line <code>ts_alternate_row_colors = true;</code> in the local Common.js.


Wiki markup:
If a [[w:Wikipedia:Catalogue of CSS classes|cascading style sheet]] specifies that text be displayed differently in these two classes, alternating rows in the resulting table will appear differently. For example, including the following code in a style sheet causes ''every'' sortable table to have silver and gold background stripes:
<pre>
tr.odd {
background-color: silver;
}
tr.even {
background-color: gold;
}
</pre>


<nowiki>{|</nowiki> class="wikitable sortable"
It is also possible to define an <code>id</code> in a CSS that causes only tables with that <code>id</code> to be striped, for example:
<nowiki>!</nowiki> style="width:9em"| Country !!data-sort-type="number"| Area
<pre>
<nowiki>|-</nowiki>
#stripe tr.odd {
<nowiki>|</nowiki> France
background-color: silver;
<nowiki>|</nowiki> 674 843 km²
}
<nowiki>|-</nowiki> <b style="color:red">class="expand-child"</b> style="font-size:85%; line-height:1.2; color:gray"
#stripe tr.even {
<nowiki>|</nowiki> colspan="2" | In Paris is the Eiffel Tower.
background-color: gold;
<nowiki>|-</nowiki>
}
<nowiki>|</nowiki> U.K.
</pre>
<nowiki>|</nowiki> 242 495 km²
In this case, only tables with <code>class="sortable"</code> ''and'' <code>id="stripe"</code> would display with alternating row colors.
<nowiki>|-</nowiki> <b style="color:red">class="expand-child"</b> style="font-size:85%; line-height:1.2; color:gray"
<nowiki>|</nowiki> colspan="2" | In the U.K. you cannot pay with euros.
<nowiki>|-</nowiki> <b style="color:red">class="expand-child"</b> style="font-size:85%; line-height:1.2; color:gray"
<nowiki>|</nowiki> colspan="2" | And you drive on the left side of the road.
<nowiki>|-</nowiki>
<nowiki>|</nowiki> Germany
<nowiki>|</nowiki> 357 168 km²
<nowiki>|-</nowiki> <b style="color:red">class="expand-child"</b> style="font-size:85%; line-height:1.2; color:gray"
<nowiki>|</nowiki> colspan="2" | Germany includes the former DDR.
<nowiki>|}</nowiki>


What it looks like in your browser:
If a user sorts the table according to a different column, the stripes still alternate. I.e., the stripes are specific to the positions of the rows in the sorted table, not to the positions of the rows in the wikitext.


{| class="wikitable sortable"
==Sorting with hidden sortkey==
!style="width:9em"| Country !!data-sort-type="number"| Area
If necessary one can apply sorting using a sortkey which [[Help:Cascading_style_sheets#Non-display|due to CSS is not displayed]]:
:<nowiki><span style="display:none">...</span></nowiki>

Example:
:<nowiki>p<span style="display:none">q</span>r</nowiki> gives p<span style="display:none">q</span>r

(However, on some projects, notably Ontoworld, a page with this wikitext cannot be saved, as spam protection.)

Javascript sorting is based on the text inside and outside the tags, without the tags themselves. A hidden sortkey can be put at the start. Both in the case of alphabetic and that of numeric sorting the first parts determine the order. Both parts together are used to determine the sort mode, so for numeric sorting the whole should be a valid number.

==Alphabetic sorting with hidden sortkey==
The sortkey comes at the start and is separated from the displayed text in such a way that the latter does not affect the sorting order. For example, if a sortkey system is used where there are no blank spaces in any sortkey, then a blank space can be used for separation. If a single blank space ''is'' possible in a sortkey, two nbsps can be used. For table elements for which the text to be displayed is equal to the sortkey, no duplication is needed, of course.

If the text inside and outside the tags together is of a form that would cause a sorting mode other than alphabetic (if and when the element is at the top), a character can be appended at the end of the sortkey to avoid this, again making sure it does not affect the sorting order by putting a space or two nbsps. This can be dispensed with if the element can never be at the top, but this can be complicated to assess as that can be caused by sorting other columns, with varying sorting modes, and it can change when deleting a row, adding a column, etc.

Instead of "display=none" another way is using a font color equal to the background, e.g. <nowiki><font color="#f9f9f9">999</font></nowiki> gives "<font color="#f9f9f9">999</font>". With this method the hidden code can be seen in selected text (e.g. with the mouse). Also the hidden text is included when copying the rendered text. The first may be an advantage or a disadvantage, the second seems only a disadvantage. A complication is also that if a user uses a background color different from the default, the specified text color may not match it; to make sure they are the same the background color can be specified also.

===Unsuitability of padding with no-break spaces===
The effect of left-padding with [[w:Non-breaking space|"&amp;nbsp;" codes]], which render as blank spaces, depends on the browser: in IE they are (unlike actual blank spaces) counted for sorting as leading blank spaces, so in a list of numbers with text (for which the alphabetic sorting mode applies) they could be used to equalize the number of characters before the explicit or implicit decimal separator. However, in Firefox they are ignored for the purpose of sorting.

{|class="wikitable sortable"
!Sorting using nbsps, works on IE but not on Firefox
!Name
|-
|100.3 FM
|Third
|-
|-
| France
|&nbsp;89.5 FM
| 674 843 km²
|First
|- class="expand-child" style="font-size:85%; line-height:1.2; color:gray"
|colspan="2" | In Paris is the Eiffel Tower.
|-
|-
| U.K.
|107.3 FM
| 242 495 km²
|Fourth
|- class="expand-child" style="font-size:85%; line-height:1.2; color:gray"
|colspan="2" | In the U.K. you cannot pay with euros.
|- class="expand-child" style="font-size:85%; line-height:1.2; color:gray"
|colspan="2" | And you drive on the left side of the road.
|-
|-
| Germany
|&nbsp;95.3 FM
| 357 168 km²
|Second
|- class="expand-child" style="font-size:85%; line-height:1.2; color:gray"
|colspan="2" | Germany includes the former DDR.
|}
|}


If you put in ''data-sort-value'' the same content as above row, keep this rows also together. The original mutual order of these rows is preserved. A better way for this is class expand-child, see above [[#Keeping some rows together]].
See also [[w:Talk:List_of_U.S._states_by_population#Sortable_Table]].


Example where ''data-sort-value'' is used is the case for the rows about the Netherlands:
===Padding with zeros===
Example:
*{{padleft:{{#expr:12*13}}|6|0}}


<nowiki>{|class="wikitable sortable"
Formatnum can be combined with padleft:
!Country/province!!Capital

Integer:

<nowiki>{{formatnum:{{padleft:299792458|16|0}}}}</nowiki> gives:

*{{formatnum:{{padleft:299792458|16|0}}}}

Real:

<nowiki>{{formatnum:{{padleft:{{#expr:((299792458.056 - .5) round 0)}}|16|0}}}}.{{padleft:{{#expr:(1000000*(299792458.056 - ((299792458.056 - .5) round 0))) round 0}}|6|0}}</nowiki> gives:

*{{formatnum:{{padleft:{{#expr:((299792458.056 - .5) round 0)}}|16|0}}}}.{{padleft:{{#expr:(1000000*(299792458.056 - ((299792458.056 - .5) round 0))) round 0}}|6|0}}

===Alphabetic sortkey for numeric sorting===
If one needs to use alphabetic sort mode for numbers, one can construct a hidden alphabetic sortkey for this purpose. To make sure that alphabetic sort mode is used no code should satisfy the criterion for numeric sorting mode. Although this matters only for the element at the top, any element might arrive at the top due to sorting another column. Alphabetic sort mode can for example be achieved by starting all sortkeys with "&". It prevents numbers with a remark, or texts like N/A to affect sorting, and allows any choice for their sortkeys.

In the case of non-negative numbers with known upper limit (i.e., even if the table may need editing in the future the numbers are expected to remain below this limit) the sortkey can be "&" followed by the number with leading zeros. For example, in a table column with non-negative numbers below 1,000,000 the sort key of 23.4 is &000023.4

====General case====
: To allow a wide range numbers (between -1e100 and 1e100) the following system can for example be used:
:* where scientific notation is used, it is normalized such that the absolute value of the mantissa is between 1 and 10; the exponent is put first
:* scientific notation is used for all negative numbers, and all positive numbers outside some interval (below: 1e-9 to 1e9), and not inside that interval
:* where the absolute value of the exponent and/or the mantissa is a decreasing function of the number, the notation uses its complement with respect to 99 for exponents and 10 for mantissas; the code "c" is added in these cases
:* numbers 0 &le; ''x'' < 1000 get a "+" in front
:* positive numbers in scientific notation with a negative exponent get "+0" in front
:* spaces inside the code and &-signs in front are added where needed:
:** for numbers not in scientific notation the positions of all explicit and implicit decimal points are aligned
:** for the starting position, i.e. the position of the first "-", "+", or "e", of other numbers, see the example table
:** to avoid numeric sorting mode, below we have always either an ampersand or two letters e
:In the following the left column shows the code for alphabetic sorting, where cryptic followed by the regular notation. The second column contains the same (hence sorting the same), but with code hidden with CSS. The third column does not contain hidden parts and uses numeric sort mode. When sorting the first or second column "more than 1e9" is positioned suitably, while when sorting the third column it is positioned like 0. Moreover, if this cell would be at the top alphabetic sort mode would be used.
::{|class="wikitable sortable"
|-
|-
|France||Paris
!total of hidden and displayed text!! display form !!plain number!!compact sort key of other method
|-
|-
|Netherlands||Amsterdam
|<tt>{{lsc11amp|6|}} </tt>||{{lsc11amp|6}} || 6 || 3000_6
|-
|-
|data-sort-value=Netherlands|South Holland||data-sort-value=Amsterdam|The Hague
|<tt>{{lsc11amp|7|}} </tt>||{{lsc11amp|7}} || 7 || 3000_7
|-
|-
|U.K.||London
|<tt>{{lsc11amp|{{#expr: 4^10}}|}} </tt>||{{lsc11amp|{{#expr: 4^10}}}} || {{formatnum:{{#expr: 4^10}}}} || 3006_1048576
|}</nowiki>
|-
|<tt>{{lsc11amp|1234|}} </tt>|||{{lsc11amp|1234}} || 1,234 || 3003_1234
|-
|<tt>{{lsc11amp|123|}} </tt>||{{lsc11amp|123}} || 123 || 3002_123
|-
|<tt>{{lsc11amp|{{#expr: 4^12}}|}} </tt>||{{lsc11amp|{{#expr: 4^12}}}} || {{formatnum:{{#expr: 4^12}}}} || 3007_16777216
|-
|<tt>{{lsc11amp|{{#expr: 4^8}}|}} </tt>||{{lsc11amp|{{#expr: 4^8}}}} || {{formatnum:{{#expr: 4^8}}}} || 3005_65536
|-
|<tt>{{lsc11amp|{{#expr: 4^13}}|}} </tt>||{{lsc11amp|{{#expr: 4^13}}}} || {{formatnum:{{#expr: 4^13}}}} || 3007_67108864
|-
|<tt><span>e23 6</span> 6e23 </tt>||<span style="display:none">e23 6</span> 6e23 || 6e23 || 3023_6
|-
|<tt><span>e09 1.01</span> more than 1e9 </tt>||<span style="display:none">e09 1.01</span> more than 1e9 || more than 1e9 || 3009_101
|-
|<tt><span>e09 1</span> 1e9 </tt>||<span style="display:none">e09 1</span> 1e9 || 1e9 || 3009_1
|-
|<tt><span>&&&&&&&&&+0 ec89 9.999,99 </span> 9.999,99e-10</tt>||{{sms|&&&&&&&&+0 ec89 9.999,99 }} 9.999,99e-10|| 9.999,99e-10 || 2990_999999
|-
|<tt><span>&&&&&&&&&+</span>0.000,000,001 </tt>||<span style="display:none">&&&&&&&&&+</span>0.000,000,001 || 0.000,000,001 || 2991_1
|-
|<tt><span>&&&&&&&&&+0 ec87 6 </span>6e-12</tt>||<span style="display:none">&&&&&&&&&+0 ec87 6 </span>6e-12|| 6e-12 || 2988_6
|-
|<tt><span>&&&&&&&&&+0 ec86 7 </span>7e-13</tt>||<span style="display:none">&&&&&&&&&+0 ec86 7 </span>7e-13|| 7e-13 || 2987_7
|-
|<tt><span>&&&&&&&&&+0 ec87 5 </span> 5e-12</tt>||<span style="display:none">&&&&&&&&&+0 ec87 5 </span> 5e-12|| 5e-12 || 2988_5
|-1
|<tt><span>&&&&&&&&&&-e-10 c0.000,01</span> -9.999,99e-10 </tt>||<span style="display:none">&&&&&&&&&&-e-10 c0.000,01</span> -9.999,99e-10 || -9.999,99e-10 || 1010_000001
|-
|<tt><span>&&&&&&&&&&-e-08 c6.8 </span> -3.2e-8</tt>||<span style="display:none">&&&&&&&&&&-e-08 c6.8 </span> -3.2e-8|| -3.2e-8 || 1008_68
|-
|<tt><span>&&&&&&&&&&&-ec86 c0.3 </span> -9.7e13</tt>||<span style="display:none">&&&&&&&&&&&-ec86 c0.3 </span> -9.7e13|| -9.7e13 || 0987_03
|-
|<tt><span>&&&&&&&&&&&-ec99 c7.7 </span> -2.3</tt>||<span style="display:none">&&&&&&&&&&&-ec99 c7.7 </span> -2.3|| -2.3 || 1000_77
|-
|<tt>{{lsc11amp|0|}} </tt>||{{lsc11amp|0}} || 0 || 2000_
|-
|<tt>{{lsc11amp|0|}}.3 </tt>||{{lsc11amp|0}}.3 || 0.3 || 2999_3
|}


An advantage of this method is that for a range of positive numbers for which scientific notation is often not common, no separate sortkey is needed, just invisible &-signs and in some case a plus sign are added in front. When using a template to produce both the invisible and the visible text this advantage may not be important.

In the following method the sort code is more compact.
: A simpler algorithm may be used to generate shorter sort keys for arbitrarily large or small numbers of arbitrary precision; this algorithm can be easily implemented in templates from any computed value:
:* Write numbers in normalized scientific notation (with 1 <= mantissa < 10, except when number is zero, or NaN, or infinite : see table below).
:* Compute the following three groups of digits:
:* 1. Write a first digit depending on the signs of the number or of the normalized exponent:</li></ol>
::{|class="wikitable"
|-
! Sign of number !! Sign of normalized exponent !! Number value range !! First group to select
|-
|rowspan="2"| negative || positive || -Infinite < x &le; -10 ||bgcolor="#FDD"| 0
|-
| negative or null || -10 < x < 0 ||bgcolor="#CFC"| 1
|-
|rowspan="2"| positive or null || negative || +0 &le; x < +1 ||bgcolor="#EEF"| 2
|-
| positive or null || +1 &le; x < +Infinite ||bgcolor="#FFF"| 3
|}
:* 2. Take the absolute value of the normalized exponent. Then if the sign-digit above is 0 or 2 and if the number is not null, transform the exponent by substracting this absolute value from 1000 (i.e. take the complement to 9 of all digits, then add 1 to the resulting integer). Write the transformed exponent as a group with fixed length of 3 digits (if you need larger exponents, use 10000 for 4 digits, and so on).
:* 3. If the sign-digit (computed from table above) is 0 or 1 (i.e. the number is strictly negative), substract the absolute value of the normalized mantissa from 10 (take to the complement to 9 of all digits, then add 1 to the integer formed by dropping the decimal separator on the second position). Write the resulting integer as a third group of digits (you ''may'' drop that dot from the group)
:* The groups of digits need to be separated in such a way that it cannot be confused as a number or a date: a good separator is the underscore, but groups may just be comma-separated as well. Only one separator is needed (because the two first groups have a fixed length), but it is suggested to use it between all three groups, or at least between the second and third group (even if this one is empty). In the table below, both kinds of separators are visible, to make things clearer.
:* As this format has no limitation on the precision of the mantissa, you may append other characters (including unnecessary trailing zeroes from the mantissa) that are needed to sort related informations (such as "more than", "less than") in an additional group.
: Examples are shown in the table below which sorts correctly in the last two columns; this table shows the computed groups and the compacted sort keys when normalized exponents have been written on 3 digits ; all trailing zeroes (or mantissa digits for infinite values), as well as the decimal dot, in the expression of the mantissa have been dropped from the compact sort key:
::{| class="wikitable sortable" style="font-size:80%;line-height:1.1
|-
! Value || Value normalized in<br /> scientific notation !! Computed groups !! Compact sort key
|-bgcolor="#FFF"
| +Infinite || + 10<sup>+ INF</sup> × 1.000 || 4 ; 000 ; 1.000 || 4000_
|-bgcolor="#FFF"
| 9.999e999 || + 10<sup>+ 999</sup> × 9.999 || 3 ; 999 ; 9.999 || 3999_9999
|-bgcolor="#FFF"
| 1e17 || + 10<sup>+ 017</sup> × 1.000 || 3 ; 017 ; 1.000 || 3017_1
|-bgcolor="#FFF"
| 1234 || + 10<sup>+ 003</sup> × 1.234 || 3 ; 003 ; 1.234 || 3003_1234
|-bgcolor="#FFF"
| 234 || + 10<sup>+ 002</sup> × 2.340 || 3 ; 002 ; 2.340 || 3002_234
|-bgcolor="#FFF"
| 34 || + 10<sup>+ 001</sup> × 3.400 || 3 ; 001 ; 3.400 || 3001_34
|-bgcolor="#FFF"
| 10 || + 10<sup>+ 001</sup> × 1.000 || 3 ; 001 ; 1.000 || 3001_1
|-bgcolor="#FFF"
| 9.999 || + 10<sup>+ 000</sup> × 9.999 || 3 ; 000 ; 9.999 || 3000_9999
|-bgcolor="#FFF"
| 8 || + 10<sup>+ 000</sup> × 8.000 || 3 ; 000 ; 8.000 || 3000_8
|-bgcolor="#FFF"
| 2 || + 10<sup>+ 000</sup> × 2.000 || 3 ; 000 ; 2.000 || 3000_2
|-bgcolor="#FFF"
| 1 || + 10<sup>+ 000</sup> × 1.000 || 3 ; 000 ; 1.000 || 3000_1
|-bgcolor="#EEF"
| 0.9999 || + 10<sup>– 001</sup> × 9.999 || 2 ; 999 ; 9.999 || 2999_9999
|-bgcolor="#EEF"
| 0.8 || + 10<sup>– 001</sup> × 8.000 || 2 ; 999 ; 8.000 || 2999_8
|-bgcolor="#EEF"
| 0.2 || + 10<sup>– 001</sup> × 2.000 || 2 ; 999 ; 2.000 || 2999_2
|-bgcolor="#EEF"
| 0.1 || + 10<sup>– 001</sup> × 1.000 || 2 ; 999 ; 1.000 || 2999_1
|-bgcolor="#EEF"
| 0.00002 || + 10<sup>– 001</sup> × 2.000 || 2 ; 995 ; 2.000 || 2995_2
|-bgcolor="#EEF"
| 0.000002 || + 10<sup>– 006</sup> × 2.000 || 2 ; 994 ; 2.000 || 2994_2
|-bgcolor="#EEF"
| 1e-999 || + 10<sup>– 999</sup> × 1.000 || 2 ; 001 ; 1.000 || 2001_1
|-bgcolor="#EEF"
| 0 || + 10<sup>+ 000</sup> × 0.000 || 2 ; 000 ; 0.000 || 2000_
|-bgcolor="#CFC"
| -1e-999 || – 10<sup>– 999</sup> × 1.000 || 1 ; 999 ; 9.000 || 1999_9
|-bgcolor="#CFC"
| -0.000002 || – 10<sup>– 006</sup> × 2.000 || 1 ; 006 ; 8.000 || 1006_8
|-bgcolor="#CFC"
| -0.00002 || – 10<sup>– 005</sup> × 2.000 || 1 ; 005 ; 8.000 || 1005_8
|-bgcolor="#CFC"
| -0.1 || – 10<sup>– 001</sup> × 1.000 || 1 ; 001 ; 9.000 || 1001_9
|-bgcolor="#CFC"
| -0.2 || – 10<sup>– 001</sup> × 2.000 || 1 ; 001 ; 8.000 || 1001_8
|-bgcolor="#CFC"
| -0.8 || – 10<sup>– 001</sup> × 8.000 || 1 ; 001 ; 2.000 || 1001_2
|-bgcolor="#CFC"
| -0.9 || – 10<sup>– 001</sup> × 9.000 || 1 ; 001 ; 1.000 || 1001_1
|-bgcolor="#CFC"
| -0.9001 || – 10<sup>– 001</sup> × 9.001 || 1 ; 001 ; 0.999 || 1001_0999
|-bgcolor="#CFC"
| -0.9999 || – 10<sup>– 001</sup> × 9.999 || 1 ; 001 ; 0.001 || 1001_0001
|-bgcolor="#CFC"
| -1 || – 10<sup>– 000</sup> × 1.000 || 1 ; 000 ; 9.000 || 1000_9
|-bgcolor="#CFC"
| -2 || – 10<sup>– 000</sup> × 2.000 || 1 ; 000 ; 8.000 || 1000_8
|-bgcolor="#CFC"
| -8 || – 10<sup>– 000</sup> × 8.000 || 1 ; 000 ; 2.000 || 1000_2
|-bgcolor="#CFC"
| -9 || – 10<sup>– 000</sup> × 9.000 || 1 ; 000 ; 1.000 || 1000_1
|-bgcolor="#CFC"
| -9.001 || – 10<sup>– 000</sup> × 9.001 || 1 ; 000 ; 0.999 || 1000_0999
|-bgcolor="#CFC"
| -9.999 || – 10<sup>– 000</sup> × 9.999 || 1 ; 000 ; 0.001 || 1000_0001
|-bgcolor="#FDD"
| -10 || – 10<sup>+ 001</sup> × 1.000 || 0 ; 999 ; 9.000 || 0999_9
|-bgcolor="#FDD"
| -11 || – 10<sup>+ 001</sup> × 1.100 || 0 ; 999 ; 8.900 || 0999_89
|-bgcolor="#FDD"
| -34 || – 10<sup>+ 001</sup> × 3.400 || 0 ; 999 ; 6.600 || 0999_66
|-bgcolor="#FDD"
| -34.02 || – 10<sup>+ 001</sup> × 3.402 || 0 ; 999 ; 6.598 || 0999_6598
|-bgcolor="#FDD"
| -34.1 || – 10<sup>+ 001</sup> × 3.410 || 0 ; 999 ; 6.590 || 0999_6590
|-bgcolor="#FDD"
| -234 || – 10<sup>+ 002</sup> × 2.340 || 0 ; 998 ; 7.660 || 0998_7660
|-bgcolor="#FDD"
| -1234 || – 10<sup>+ 003</sup> × 1.234 || 0 ; 997 ; 8.766 || 0997_8766
|-bgcolor="#FDD"
| -9.999e999 || – 10<sup>+ 999</sup> × 9.999 || 0 ; 001 ; 9.999 || 0001_0001
|-bgcolor="#FDD"
| -Infinite || – 10<sup>+ INF</sup> × 1.000 || 0 ; 000 ; 1.000 || 0000_
|}

==Dates==

{|
|-
|
{|class="wikitable sortable"
{|class="wikitable sortable"
!Country/province!!Capital
|-
|-
|France||Paris
!Date sort mode
|-
|-
|Netherlands||Amsterdam
|07 Apr 2007
|-
|-
|data-sort-value=Netherlands|South Holland||data-sort-value=Amsterdam|The Hague
|16 Apr 2007
|-
|-
|U.K.||London
|16 Mar 2007
|-
|05-04-2007
|-
|04-05-2007
|-
|18 Mar 2007
|-
|27 Mar 2007
|-
|20 Aug 2006
|-
|22 Jul 2006
|}
|}


== Special dates ==
|-
|
{|class="wikitable sortable"
|-
!Date sort mode, sorting works for no preference and preference dmy
|-
|07 Apr 2007
|-
|<span style="display:none">00 Jan </span>2007
|-
|<span style="display:none">00</span> Mar 2007
|-
|16 Apr 2007
|-
|28 Feb 2007
|-
|[[28 Feb]] [[2007]]
|-
|28 Jan 2007
|-
|[[28 Jan]] [[2007]]
|-
|[[07 Apr]] [[2007]]
|-
|[[16 Apr]] [[2007]]
|-
|[[1 Mar]] [[2007]]
|-
|[[01 Mar]] [[2007]]
|-
|[[27 Mar]] [[2007]]
|-
|[[20 Aug]] [[2006]]
|-
|[[22 Jul]] [[2006]]
|-
|1 Mar 2007
|-
|01 Mar 2007
|-
|27 Mar 2007
|-
|20 Aug 2006
|-
|22 Jul 2006
|}
|}
{|
|'''String sort mode''' ''([{{fullurl:{{FULLPAGENAME}}|action=edit&section=14}} edit] to view source)''
{|class="wikitable sortable"
!date
|-
| [[2006]] <span style="display:none">a</span>
|-
| {{dts1|2006-12-03}}
|-
| {{dts1|-0000-03-27}}
|-
| <span style="display:none">2006-12 </span>[[December]] [[2006]]
|-
| <span style="display:none">!9936-04 </span>[[April]] [[64 BC]]
|-
| <span style="display:none">!9900-07-13</span>[[-0099-07-13]]
|-
| <span style="display:none">!9937-09-23</span>[[-0062-09-23]]
|-
| <span style="display:none">!9937-10-08</span>[[-0062-10-08]]
|-
| <span style="display:none">!9998-12-21</span>[[-0001-12-21]]
|-
| {{dts1|2006-11-08}}
|-
| {{dts1|0304-12-31}}
|-
| {{dts1|2005-05-15}}
|}
|}
The sort mode is based on the ''rendered'' format; in the case of links: the labels, not the targets (though including any content hidden by "display:none").

'''Date sort mode''':

One of the formats allowed for the date sort mode is produced by the [[Help:Date formatting and linking|Mediawiki's date-formatting feature]] in the right combination of preference and wikitext format: we need to use in the wikitext the format <nowiki>[[dd mmm]] [[yyyy]]</nowiki> (done in the example) and either no preference or preference dmy, or use with preference dmy one of the formats <nowiki>[[mmm dd]][[yyyy]], [[yyyy]][[mmm dd]], or [[yyyy]][[dd mmm]]</nowiki>.

Incomplete dates:
*<nowiki><span style="display:none">00 Jan </span>2007</nowiki>
*<nowiki><span style="display:none">00</span> Mar 2007</nowiki>

See also: [[bugzilla:8226]].

'''String sort mode''':

String sort mode provides chronological sorting for dates formated as <nowiki><span style="display:none">&</span></nowiki>YYYY-MM-DD; the hidden "&" avoids numeric sort mode.

Also we can hide the YYYY-MM-DD and put after that any choice of displayable text, including Mediawiki date formatting. The Wikipedia template {{tiw|dts}} provides a convenient way of applying this method while using the date-formatting feature for display.


For years BC we can use, for example, <code>!9937-09-23</code> for [[-0062-09-23]] (subtract the year number BC from 10000, or the absolute value of the astronomical year from 9999).
For years BC we can use, for example, <code>!9937-09-23</code> for [[-0062-09-23]] (subtract the year number BC from 10000, or the absolute value of the astronomical year from 9999).
Line 843: Line 450:
If a table column contains any or all incomplete dates, this will not cause sorting problems. If only a year and month are given, that incomplete date is positioned alphabetically before the first day of the month in question. Likewise, if only a year is given, the date is positioned before the first month or day given for that year.
If a table column contains any or all incomplete dates, this will not cause sorting problems. If only a year and month are given, that incomplete date is positioned alphabetically before the first day of the month in question. Likewise, if only a year is given, the date is positioned before the first month or day given for that year.


=== Use of #time ===
If at some point (i.e., after possible previous sorting) the form <code><nowiki>[[YYYY]]</nowiki></code> is at the top with a non-negative year, sorting would be numerical; in this case, after toggling between ascending and descending there would be no proper sorting ''within'' each year (because [http://www.devguru.com/technologies/ecmascript/QuickRef/parsefloat.html parsefloat] is applied, finding the first number in the string, and basing sorting on only that number). Also, years BC would not be sorted properly. Therefore, alphabetic sorting has to be enforced. This can be done by putting a non-displayed character after the year, separated by a space.


Using parser function #time we can put <code><nowiki><span style="display:none">&{{#expr:3e11+{{#time:U|..}}}}</span></nowiki></code> in front of the displayed date. This works in the range 1 Jan 111, 00:00:00 through 31 Dec 9999, 23:59:59 for the [[w:Proleptic Gregorian calendar|proleptic Gregorian calendar]]. The added value makes all values positive and the same length (if scientific format would show up an additional step is needed to prevent this). The "&" forces string sort mode.
See also:
*{{tiw|dts}}

'''Numeric sort mode''':
The numeric sort mode can be used with <code><nowiki><span style="display:none">{{#time:U|..}}</span></nowiki></code> in front of the displayed date. This works in the range 1 Jan 111, 00:00:00 through 31 Dec 9999, 23:59:59 for the [[w:Proleptic Gregorian calendar|proleptic Gregorian calendar]]. Dates and times can be entered in any [http://www.php.net/manual/en/datetime.formats.php php date/time format]. Note that when we have just a year, a month (typically Jan) must be added in the hidden part. To use dates before the year 111, add a multiple of 400, e.g. 6000, to all years, this effectively shifts the range to 1 Jan -5889, 00:00:00 through 31 Dec 4399, 23:59:59, without changing the calendar.

==Secondary sortkey==
If a column contains a value multiple times then sorting the column preserves the order of the rows within each subset that has the same value in that column ({{mlw|Sorting_algorithm|Stability|stable sorting}}). Thus sorting based on a primary, secondary, tertiary, etc. sortkey can be done by sorting the least-significant sortkey first, etc.


Dates and times can be entered in any [http://www.php.net/manual/en/datetime.formats.php php date/time format]. Note that when we have just a year, a month (typically Jan) must be added in the hidden part.
'''First click on column Text and then on Numbers, you'll see that the ordering is on Numbers (1), Alphabet (2).'''


Example using [[Help:Sorting/date]]:
{|class="wikitable sortable"
{|class="wikitable sortable"
!input date!!text!!date and time as interpreted, with hidden sort key!!input with visible sort key!!input with hidden sort key!!Unix time
!Numbers!!Text!!Dates!!Currency!!More text
|-
|4||a||01.Jan.2005||4.20||row 1
|-
|5||a||05/12/2006||7.15||row 2
|-
|1||b||02-02-2004||5.00||row 3
|-
|1||a||02-02-2004||5.00||row 4
|-
|2||x||13-apr-2005||||row 5
|-
|2||a||13-apr-2005||||row 6
|-
|3||a||17.aug.2006||6.50||row 7
|-
|3||z||25.aug.2006||2.30||row 8
|-
|3||z||28.aug.2006||5.50||row 9
|-
|3||z||31.aug.2006||3.77||row 10
|-
|3||z||01.sep.2006||1.50||row 11
|-class="sortbottom"
!Bottom!!!!!!!!
|-
|-
| || || || ||
{{Help:Sorting/date|010203}}
{{Help:Sorting/date|1/2}}
{{Help:Sorting/date|1/2/3}}
{{Help:Sorting/date|1-2-2003}}
{{Help:Sorting/date|1-2-3}}
{{Help:Sorting/date|2007}}
{{Help:Sorting/date|1 Jan 111, 00:00:00}}
{{Help:Sorting/date|31 Dec 9999, 23:59:59}}
{{Help:Sorting/date|Sep 1970}}
{{Help:Sorting/date|1970}}
{{Help:Sorting/date|Jun 2007| or later}}
{{Help:Sorting/date|Jun 2007| perhaps earlier}}
{{Help:Sorting/date|2007-6}}
{{Help:Sorting/date|Jun 2007}}
{{Help:Sorting/date|4 Jun 2007}}
{{Help:Sorting/date|3 Jul 2007}}
{{Help:Sorting/date|12 Aug 2006}}
{{Help:Sorting/date|1 Mar 2006 -1day}}
{{Help:Sorting/date|1 Mar 2008 -1day}}
{{Help:Sorting/date|1 Mar 2010 -1day}}
{{Help:Sorting/date|1 Mar 1900 -1day}}
{{Help:Sorting/date|1 Mar 1600 -1day}}
{{Help:Sorting/date|Jun 1607}}
{{Help:Sorting/date|{{CURRENTTIMESTAMP}}}}
{{Help:Sorting/date|yesterday}}
{{Help:Sorting/date|today}}
{{Help:Sorting/date|tomorrow}}
{{Help:Sorting/date|1week}}
{{Help:Sorting/date|-1week}}
{{Help:Sorting/date|1day}}
{{Help:Sorting/date|-1day}}
{{Help:Sorting/date|1month}}
{{Help:Sorting/date|-1month}}
{{Help:Sorting/date|1year}}
{{Help:Sorting/date|-1year}}
{{Help:Sorting/date|1000year}}
{{Help:Sorting/date|10000month}}
{{Help:Sorting/date|1000000day}}
{{Help:Sorting/date|10000000hour}}
{{Help:Sorting/date|1000000000minute}}
{{Help:Sorting/date|100000000000second}}
{{Help:Sorting/date|7980year}}
{{Help:Sorting/date|-1890year}}
{{Help:Sorting/date|Mon}}
{{Help:Sorting/date|Tue}}
{{Help:Sorting/date|Wed}}
{{Help:Sorting/date|Thu}}
{{Help:Sorting/date|Fri}}
{{Help:Sorting/date|Sat}}
{{Help:Sorting/date|Sun}}
{{Help:Sorting/date|}}
{{Help:Sorting/date|unknown}}
|}
|}


To use dates before the year 111, add a multiple of 400, e.g. 6000, to all years, this effectively shifts the range to 1 Jan -5889, 00:00:00 through 31 Dec 3999, 23:59:59, without changing the calendar.
==Keeping some rows together==

Partly hidden sortkeys can be used to keep certain rows together. The original mutual order of these rows is preserved.
See also:
*{{tiw|dts}} - sorting a table by a date column
*{{tim|sd}} - shows weekday in a separate column before date, and link all dates


== Cell spanning multiple rows/cells ==
Example where this is the case for the rows about the Netherlands:


A cell which spans more than one row or column is treated as if it were multiple cells with the same value.
{|
|
{|class="wikitable sortable"
{|class="wikitable sortable"
|+ rowspan
!Country/province!!Capital
! data-sort-type="date" | Date!!Name!!Height
|-
|-
|01.10.1977||Smith||rowspan="2"|1.85
|France||Paris
|-
|-
|11.06.1972||Adams
|Netherlands<span style="display:none">South Holland</span>||Amsterdam<span style="display:none">The Hague</span>
|-
|-
|01.09.1992||Bianchi||1.72
|<span style="display:none">Netherlands</span>South Holland||<span style="display:none">Amsterdam</span>The Hague
|-
|}
| <div style="margin-left:3em">
|U.K.||London
{| class="wikitable sortable"
|+ colspan
! A !! colspan="2" style="width:2.5em" | B !! C
|-
| A
| 2
| 1
|-
| B
| colspan="2" | 1
| 3
|-
| C
| colspan="3" | 2
|}
|}


</div>
==Limitations==
|}
Javascript sorting may not work properly on tables with cells extending over multiple rows and/or columns (however, sorting of columns up to and including the first with ''colspan'' does not seem to be affected). Also, while cells can be empty, they should not be ''missing'' at the end of a row. In these cases sometimes the table gets messed up when attempting to sort, while other times some of the sorting buttons work while others don't.


As of MediaWiki Version [[mw:MediaWiki_1.26/wmf23| 1.26 wmf23]] (Sept. 2015), sorting of colspanned cells works correctly. Also, ''missing'' cells at the end of a row will change after first sort into cells with empty content.
=== Colspan workaround ===

To allow sorting, the formal number of cells in each row should be equal (if not all columns are made sortable this should apply at least for the number of cells up to and including the last sortable column). However, with a CSS hack the number of cells ''shown'' in a row can differ from the formal number of cells. For example, two formal cells can be shown as one by specifying a width for the first column, shifting the contents of the second cell to the left, increasing its width by the same amount, and hiding the cell border that would normally be visible. Hidden sortkeys can be used to control, for sorting with respect to each column, how this row should be sorted.
=== Colspanned cells ===

The auto-detection of [[#Sort modes|sort mode]] is done for colspanned cells for each column separately. Defining the sort mode by putting <code>data-sort-type</code> inside the header will specify this sort mode for all colspanned columns.

To use separate sort keys for each column in a colspanned cell, use the CSS hack described here:
To allow sorting, the formal number of cells in each row should be equal (If not, all columns become sortable. This should apply at least for the number of cells up to and including the last sortable column.) However, with a CSS hack the number of cells ''shown'' in a row can differ from the formal number of cells. For example, two formal cells can be shown as one by specifying a width for the first column, shifting the contents of the second cell to the left, increasing its width by the same amount, and hiding the cell border that would normally be visible. Hidden sort keys can be used to control the sort order of particular rows with respect to each column.


Example:
Example:
Line 922: Line 579:
|}
|}


== Static column ==
This can be combined with the method of "keeping some rows together" demonstrated above. For an example of an application of this, consider a table of three columns where the third column would make the table too wide, such as a column of miscellaneous details. These details can be put in separate rows, each staying below the corresponding row when the table is sorted.


Example:

{| class="wikitable sortable"
!style="width:9.3em"|Country!!Capital
|-
|France
|Paris <span style="display:none"><div style="position:relative;left:-9em;margin-right:-9em;overflow:auto">In Paris is the Eiffel Tower.</div></span>
|-
|<span style="display:none">France</span>
|style="border-left:2px solid #fff;border-left-style:hidden;background:#fff;padding:0.4em 0em"|<span style="display:none">Paris </span><div style="position:relative;left:-9em;margin-right:-9em;overflow:auto">In Paris is the Eiffel Tower.</div>
|-
|U.K.
|London <span style="display:none"><div style="position:relative;left:-9em;margin-right:-9em;overflow:auto">In the U.K. you cannot pay with euros.</div></span>
|-
|<span style="display:none">U.K.</span>
|style="border-left:2px solid #fff;border-left-style:hidden;background:#fff;padding:0.4em 0em"|<span style="display:none">London </span><div style="position:relative;left:-9em;margin-right:-9em;overflow:auto">In the U.K. you cannot pay with euros.</div>
|-
|Germany
|Berlin <span style="display:none"><div style="position:relative;left:-9em;margin-right:-9em;overflow:auto">Germany includes the former DDR.</div></span>
|-
|<span style="display:none">Germany</span>
|style="border-left:2px solid #fff;border-left-style:hidden;background:#fff;padding:0.4em 0em"|<span style="display:none">Berlin </span><div style="position:relative;left:-9em;margin-right:-9em;overflow:auto">Germany includes the former DDR.</div>
|}

A table row template makes this technique less cumbersome to apply, see e.g. [[w:List of furry conventions]], [[w:Template:Furry-con-list-start]] and [[w:Template:Furry-con-list-entry]].

==Controlling sorting and display==
Text undesired for sorting but needed for display:
*In numeric sorting mode, this text (e.g. footnotes) needs to be put after the number; if at the top it causes string sort mode. See e.g. [[Help:Sorting/countries]].
*In date sorting mode, this text needs to be put in a separate column; in the case of a cell containing a range of dates or numbers (e.g. from .. to ..), text in surplus of what is required for sorting is put in the extra column. If the first part of the text is used for sorting, then the extra column needs to be the following one; conversely, if the last part of the text is used for sorting, then the extra column needs to be the previous one; depending on the table format, this dividing of an item over two cells may look ugly.
*In alphabetic sorting, any footnotes etc. do not require a separate column; they can simply be put at the end of the element.

Text undesired for display but needed for sorting:
*can be put as hidden text in the column to be sorted

Combining the two, we can have displayed text independent of text used for sorting, by fully hiding the latter, and fully putting the former in a separate column (in date sorting mode and numeric sorting mode) or in the same column after the hidden text (in alphabetic sorting). Fully putting the displayed text in a separate column may look ugly if it is not done consistently for a whole column, but only for elements that require this (e.g. if most entries in a column are single numbers, but some are ranges).

==Static column==
A static column, e.g. with row numbers, can be obtained with two side-by-side tables with for each row the same height set in both tables:
A static column, e.g. with row numbers, can be obtained with two side-by-side tables with for each row the same height set in both tables:


{| width="50%"
{|
|-
|-
|
|
{| class="wikitable"
{| class="wikitable" style="margin-right:0"
!Number
! Number
|-
|- style="height:100px"
!style="height:40px;" scope="row"| 1
|1
|-
|- style="height:100px"
!style="height:40px;" scope="row"| 2
| 2
|}
|}
|
|
{| class="wikitable sortable"
{| class="wikitable sortable"
!Country
! Country !! Capital
|-
!Capital
|style="height:40px;"| The Netherlands || Amsterdam (although The Hague is the seat of government)
|- style="height:100px"
|-
|The Netherlands || Amsterdam (although The Hague is the seat of government)
|- style="height:100px"
|style="height:40px;"| France || Paris
|France || Paris
|}
|}
|}
|}
Line 987: Line 605:
The style can be adjusted to make it appear as a single table. If for some row the height of that row is too small for the text in a cell on one of the sides, the browser increases it, and there is no longer a match.
The style can be adjusted to make it appear as a single table. If for some row the height of that row is too small for the text in a cell on one of the sides, the browser increases it, and there is no longer a match.


==Default order==
== Default order ==

It is not possible to make a table appear sorted by a certain column without the user clicking on it. By default, the rows of a table always appear in the same order as in the wikitext. If you want a table to appear sorted by a certain column, you must sort the wikitext itself in that order; see the next section for one way to do this.
It is not possible to make a table appear sorted by a certain column without the user clicking on it. By default, the rows of a table always appear in the same order as in the wikitext. If you want a table to appear sorted by a certain column, you must sort the wikitext itself in that order; see the next section for one way to do this.


==Sorting the wikitext of a table==
=== Sorting the wikitext of a table ===
Sorting the wikitext itself, thus creating a new default sort order, can be done semi-automatically by making an auxiliary sortable table where each row is rendered as the wikitext for the corresponding row of the original table. Applying the JavaScript sorting as desired, the result can be copied to provide the sorted wikitext for the original table.


Sorting the wikitext itself, thus creating a new default sort order, can be done semi-automatically as follows. Take the wikitext of the table without top and bottom lines. Use "find and replace" to replace the cell separators with special code not containing "|". If there are pipes in the table cells, replace all pipes by some code, and replace that code with a newline in front of it (originating from the code for the start of a new row) back. Apply [[mw:Module:Sort]] (see [[mw:Module talk:Sort]]) at [[mw:Special:ExpandTemplates]] by putting:
Example:
<code><nowiki>{{#invoke:Sort|f|{{!}}-</nowiki></code><br/>
<code><nowiki>{{!}}</nowiki></code>
(with the newline) before, and <code><nowiki>}}</nowiki></code> after the wikitext, to sort the items between the pipes, with the desired separator in the result. Discard the items at the start containing "-" and a newline. Restore the cell separators and the pipes in the cells by replacing the temporary codes for them. Readd the top and bottom lines.


This method sorts by the wikitext of the rows, so in principal by the first column (and the second as secondary key), although wikitext codes in the cells of the first column before the content can affect the order.
Original table:


See [[Help:Sorting#Maintaining tables sorted by rank]] for sorting tables by a different column.
{|class="wikitable sortable"
!demo
|-
|9
|-
|12
|-
|11
|}


=== Using JavaScript to trigger client-side table sorting ===
Auxiliary table:


An addition to [[MediaWiki:Common.js]] can be used to "re-sort" a table automatically on the client side when the page loads (as if the user had clicked the header.) The example below sorts all the tables on a set of pages by the first column (see the [[mw:Tablesorter|Tablesorter]] documentation for syntax.)
{|class="wikitable sortable"
!aux
|-
|<nowiki>|-</nowiki><br><nowiki>| 9</nowiki>
|-
|<nowiki>|-</nowiki><br><nowiki>|12</nowiki>
|-
|<nowiki>|-</nowiki><br><nowiki>|11</nowiki>
|}


Note : This appears to break sorting by clicking on headers. It sorts ascending on the clicked on header, but won't sort the other way when clicked on again
After copying the rendered text to the edit box, to provide the body of the table syntax (between the header part and the closing line), this renders as a new table, sorted by default:


<syntaxhighlight lang="javascript">
{|class="wikitable sortable"
function isSortedTablePage() {
!demo
return ( wgPageName == "Page_To_Sort" || wgPageName == "Other_Page_To_Sort" );
|-
}
| 9

|-
jQuery( document ).ready( function( $ ) {
|11
// wrapped in "mw.loader.using" so this doesn't execute until Tablesorter has loaded
|-
mw.loader.using( 'jquery.tablesorter', function() {
|12
if( isSortedTablePage() ) $('table.sortable').tablesorter( {sortList: [ { 0: 'asc'} ]} )
|}
// or look for tables with an ID attribute of "sortMe" on any page
// $( '#sortMe' ).tablesorter( {sortList: [ { 0: 'asc'} ]} )
} );
} );
</syntaxhighlight>


== Basic alphabetic sorting order ==
The auxiliary table can be kept, to be reused in case one later (or on another page) wants to use another column for determining the default order, or wants to change between ascending and descending.


==Alphabetic sorting order==
{|class="wikitable sortable"
{|class="wikitable sortable"
!demo
!demo
Line 1,095: Line 704:
| _
| _
|-
|-
| `<!-- yes this is a back quote -->
| '
|-
|-
| A
| A
Line 1,120: Line 729:
|-
|-
| ~
| ~
|-
| &mdash;
|-
|-
Line 1,130: Line 737:
|-
|-
|é1
|é1
|-
| &mdash;
|}
|}


The two-character entries such as A1 demonstrate that A and a are at the same position.
The two-character entries such as A1 demonstrate that A and a are at the same position.


This is not a fully alphabetic sort order: letter case is first folded to lowercase using a basic 1-to-1 conversion table (limited to the Basic Multilingual Plane of Unicode, and whose coverage and completeness still depends on browser versions and on their current implementation of the versioned Unicode Character Database), but letters with diacritics (and all other digits, symbols or special whitespaces or format control characters) will still sort according to the binary encoding of the casefolded letter, using the binary order of the UTF-16 code units (exposed and seen in Javascript through the parsed HTML DOM), but not the binary order of UTF-8 code units in the HTML page, and not of codepoints as one could also expect for encoded characters in supplementary planes).
==Server issue==
It has been observed that the server replaces a regular space before "!" by a [[w:non-breaking space|non-breaking space]] <code>&amp;#160;</code>, affecting the sorting order. To avoid this, this blank space can be coded as <code>&amp;#32;</code>


In addition, no normalization of the Unicode text is being performed (so canonically equivalent strings, that should compare equal or with only very minor binary difference, may sometimes compare very far away, with completely different strings interleaved between them). For this reason, MediaWiki pages should always be encoded with their text in the Normalized Form C (preComposed), as recommended in the HTML standards.
==Browser issues==

With older versions of [[w:Safari (web browser)|Safari]] a table can only be sorted by the first column: all sort buttons have the effect that only the leftmost one is supposed to have.
As of today, an UCA-based sort is still not implemented in the client-side Javascript code, but some wikis are implementing a limited form of multilevel collation using custom basic replacement rules tuned for specific languages.

== Server issue ==

It has been observed that the MediaWiki code on the server replaces a regular space before "!" by a [[w:non-breaking space|non-breaking space]] <code>&amp;#160;</code>, affecting the sorting order. To avoid this, this blank space can be coded as <code>&amp;#32;</code>, or the exclamation mark may be surrounded by <code>&lt;nowiki&gt;</code> and <code>&lt;/nowiki&gt;</code> tags. This is to comply with French typographic rules, where exclamation marks (and a few other punctuations) must be preceded (or sometimes followed) by a space (preferably narrow) which must still be unbreakable when it is effectively needed and present, the substitution being performed as an convenient editing facility of the Wiki code for cases that are very frequent within many texts.

== Persistent sort states using cookies ==

Adding this snippet to your [[MediaWiki:Common.js]] page will make the sortable tables remember their columns sort states in a cookie so they look the same next time the page is visited. Each sortable table must have a unique '''id''' attribute for its state to be stored in the cookie.
<syntaxhighlight lang=javascript>
addOnloadHook( function() {
jQuery('.sortable').each( function() {
var id = jQuery(this).attr('id');
document.shCookie = getCookie('sortheader-'+id);
document.sortheaderId = 0;
jQuery('#'+id+' a.sortheader').each( function() {
var id = jQuery(this).parent().parent().parent().parent().attr('id');
var sh = document.sortheaderId++;
if( sh+100 == document.shCookie ) { ts_resortTable(this); ts_resortTable(this); }
if( sh == document.shCookie ) { ts_resortTable(this); sh += 100; }
jQuery(this).bind('click', {id: id, sh: sh}, function(e) {
setCookie('sortheader-'+e.data.id, e.data.sh, 1);
e.data.sh += e.data.sh < 100 ? 100 : -100;
});
});
});
});

function setCookie(c_name,value,exdays) {
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value;
}

function getCookie(c_name) {
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++) {
x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
x=x.replace(/^\s+|\s+$/g,"");
if (x==c_name) return unescape(y);
}
}
</syntaxhighlight>

== See also ==


==See also==
*{{ml|Help:Collapsing|Sortable_collapsible_table|Sortable collapsible table}}
*{{tiw|dts}} - sorting a table by a date column, while following [[w:Wikipedia:Manual_of_Style_%28dates_and_numbers%29#Dates_containing_a_month_and_a_day]] for display
*[[:w:Category:Sorting templates]]
*{{tim|sd}} - shows buggy date sorting when some or all dates are linked
*[[Help:Table]]
*[[Help:Table]]
*[[:w:Category:Sorting templates]]
*[http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/skins/common/wikibits.js wikibits.js] - contains, among other things, the sorting code
*[https://phabricator.wikimedia.org/diffusion/MW/browse/master/resources/src/jquery.tablesorter/jquery.tablesorter.js jquery.tablesorter.js] - sorting code
**changes regarding sorting:
*[[phab:tag/mediawiki-jquery-tablesorter/]] Tablesorter Workboard for bugs and improvments
***Sep 2008: allow negative numbers and scientific notation in determining numeric sort mode
***Nov 2007 [http://svn.wikimedia.org/viewvc/mediawiki?view=rev&revision=27138 allow multiple commas in numbers] - from [http://en.wikipedia.org/w/index.php?title=MediaWiki:Common.js&oldid=122738297]
***Feb 2007 [http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/skins/common/wikibits.js?r1=19987&r2=19989 allow pound and euro in currency sort mode]
***Jan 2007 [http://svn.wikimedia.org/viewvc/mediawiki?view=rev&revision=19699 sorttable.js merged into wikibits.js]
***for older revisions see the revision history of [http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/skins/common/sorttable.js?view=log&pathrev=19698 sorttable.js]
**{{mlm|MediaWiki:Common.js}} page overriding function ts_parseFloat(num) and function ts_resortTable(lnk) on Meta with improved versions
**[[sv:MediaWiki:Common.js]] page overriding function ts_parseFloat(num); adaptation to decimal comma
**[[en:Wikipedia:Village_pump_(technical)#Lots_of_changes_to_.22wikibits.js.22|proposed changes]]: [https://bugzilla.wikimedia.org/show_bug.cgi?id=15398] [https://bugzilla.wikimedia.org/show_bug.cgi?id=15399] [https://bugzilla.wikimedia.org/show_bug.cgi?id=15400] [https://bugzilla.wikimedia.org/show_bug.cgi?id=15401] [https://bugzilla.wikimedia.org/show_bug.cgi?id=15402] [https://bugzilla.wikimedia.org/show_bug.cgi?id=15403] [https://bugzilla.wikimedia.org/show_bug.cgi?id=15404] [https://bugzilla.wikimedia.org/show_bug.cgi?id=15405] [https://bugzilla.wikimedia.org/show_bug.cgi?id=15406 force sortorder of a column] [https://bugzilla.wikimedia.org/show_bug.cgi?id=15422 more numbers] [https://bugzilla.wikimedia.org/show_bug.cgi?id=15436]
*[[bugzilla:2001]] - resolved feature request
*[[bugzilla:8063]] - request to enable sorting of numbers with a point as thousands separator
*[[bugzilla:8115]]
*http://www.kryogenix.org/code/browser/sorttable/ - explanation of the original version of the code by Stuart Langridge; an improvement in the MediaWiki version is that tables no longer need to have an id.
*http://www.kryogenix.org/code/browser/sorttable/ - explanation of the original version of the code by Stuart Langridge; an improvement in the MediaWiki version is that tables no longer need to have an id.
*[[mw:Help:Sorting]]
*http://blog.webkist.com/archives/000043.html
*[[mw:Extension:Sort2]] generates sorted lists based on existing token lists.
*http://www.joostdevalk.nl/code/sortable-table/
*[[w:Wikipedia:Wikipedia Signpost/2007-01-02/Technology report]]
*{{tiw|sort}}
*[[mw:Extension:Sort2]]
*[[mw:Extension:Sort]]
*[[w:User:TimR/Tables]]


Examples elsewhere:
Examples elsewhere:
Line 1,174: Line 809:
*[[w:List of countries by GDP (PPP), 2006]]
*[[w:List of countries by GDP (PPP), 2006]]
*[[w:List of longest reigning current monarchs]] - date columns are sortable for people with "no preference" for date formatting, and for people with preference <nowiki>[[YYYY-MM-DD]]</nowiki>.
*[[w:List of longest reigning current monarchs]] - date columns are sortable for people with "no preference" for date formatting, and for people with preference <nowiki>[[YYYY-MM-DD]]</nowiki>.
*[[w:User:Smurrayinchester/Template|Pokémon table]] - prefixes numbers with "#" to have them before "-".
*[http://en.wikipedia.org/w/index.php?title=User:Smurrayinchester/Template&oldid=97802084 Pokémon table] - prefixes numbers with "#" to have them before "-".
*[[w:Nuclear_power_by_country|Nuclear power by country]] (Featured List)
*[[w:Nuclear_power_by_country|Nuclear power by country]] (Featured List)
*[[w:Desert Island Discs: castaways' choices]]
*[[w:Desert Island Discs: castaways' choices]]
Line 1,182: Line 817:


{{h:f|enname=Sorting}}
{{h:f|enname=Sorting}}

[[Category:Editor handbook]]

Revision as of 02:08, 1 March 2024

Other languages:

Tables can be made sortable via client-side JavaScript with class="sortable" (in combination with the usual formatting: class="wikitable sortable"). This works in MediaWiki 1.9 and above, which is installed in all Wikimedia projects.

A table that is sortable is identified by arrows to the right of the header in a header cell. A sortable table may be sortable by one or more columns in the table. Clicking an arrow sorts the table rows based on the selected column. Repeated clicking of an arrow changes the sort state in this sequence: Ascending, Descending, Unsorted.

Shift-clicking the arrows of other columns will trigger a secondary sort based on the most recent column on which the shift-click occurred. NB: Shift-clicking capability extends to tertiary and beyond.

Links and other wiki-markup are not possible in headers.

JavaScript

The JavaScript code jquery.tablesorter.js (source) of the tablesorter is loaded by the ResourceLoader. Some sites may have a page MediaWiki:Common.js which adds and overrides some code. Browsers need to support JavaScript and it needs to be enabled for sorting to work.

Sort modes

The way items are sorted depends on the data type of the first rows. To determine the data type, the first 5 non-blank rows below the header are tested after loading the page and the most appropriate format is chosen. Mismatches are possible. The sort order of a column can be forced. See the relevant section farther down.

Tags such as span or sup are ignored when determining data type, but reference numbers and additional visible comments are not ignored today.

Dates

Various date formats are supported, including those with localized month names. On the German Wikipedia, "16. März 2010" is correctly sorted as 2010-03-16

Most other numerical formats are supported as well, including those with different separators (such as . , ' or / ); On English Wikipedias dates are treated as US-Dates (eg. month-day-year) per default.

Numbers

The script can recognize numbers with different decimal separators (. and ,) as well as e/E numbers. However, numbers will be sorted alphanumerically (with 9 sorted after 10) unless this default behaviour is overridden. (See below.)

Text

Text is compared at client-side JavaScript since July 2019 (Commit) with Intl.Collator. This sort accented characters depend on PageContentLanguage correctly. But sort of special characters is depend on Browser implementation. Example for Intl.Collator(de):

Firefox52.9: _-—,;:!?.'"()[]{}§@*/\&#%^+±<=>|~∞¢$£¥€0…9²³aä…eé…ö…ß…ü…z
IE11:      '-—!"#$%&()*,./:;?@[\]^_{|}~¢£¥€+<=>±≤≥§♠0²³9∞aä…eé…ö…ß…ü…z

Only Android systems use the old sort mode with UTF-16 coded characters. Any accented/special characters follow after the basic latin alphabet. This can be changed site wide by posting code like the following inside the MediaWiki:Common.js:

mw.config.set('tableSorterCollation', {'ä':'a', 'ß':'ss', 'þ':'th', 'aa':'å'});

Afterwards, all 'Ä' and 'ä' will be sorted as if they were an 'a' etc. Partial list showing the default order:
! " # $ % & ' ( ) * + , - . / 0 9 : ; < = > ? @ [ \ ] ^ _ ` A Z a z { | } ~ É é —

Forcing the sort mode for a column

The sort mode can be manually specified by putting data-sort-type="…" inside the header of the respective row. This functionality is based on tablesorter.com (webarchive). The following (case-insensitive) values are valid for data-sort-type:

  • text
  • number
  • IPAddress
  • currency
  • url
  • isoDate
  • usLongDate
  • date
  • time

Example:

{|class="wikitable sortable"
!data-sort-type="date"|Date!!Name!!Height!!data-sort-type="number"|Salary
|-
|01.10.1977||Smith||1.85||1,000.000
|-
|11.6.1972||Ray||1.89||900.000
|-
|1.9.1992||Bianchi||1.72||2,000.50
|}
Date Name Height Salary
01.10.1977 Smith 1.85 1,000.000
11.6.1972 Ray 1.89 900.000
1.9.1992 Bianchi 1.72 2,000.50

Specifying a sort key

Sometimes the value of a cell is not correctly parsed or one wants to sort the row in a special way. (e.g. a cell containing 'John Smith' should actually be sorted as 'Smith' and not as 'John') This can be easily achieved by setting the data-sort-value attribute.

Wiki markup:

{|class="wikitable sortable"
!Name and Surname!!Height
|-
|data-sort-value="Smith, John"|John Smith||1.85
|-
|data-sort-value="Ray, Ian"|Ian Ray||1.89
|-
|data-sort-value="Bianchi, Zachary"|Zachary Bianchi||1.72
|}

This gives:

Name and Surname Height
John Smith 1.85
Ian Ray 1.89
Zachary Bianchi 1.72

Note, however, that this makes use of a new feature in HTML5, which is enabled by default in MediaWiki (including WMF wikis since September 2012 cfr. bugzilla:27478). The old version was to set hidden sort key with w:Template:Sort. See also mediawiki.org.

Controlling sorting and display

If some Text undesired for sorting but needed for display, force the sort mode with data-sort-type="…" and write text after values (e.g. "200 approx", or reference tags "100[1]"). Empty cell is treated as "-Infinity" when sorting numerically.

In the case of a cell containing a range of dates or numbers (e.g. from 2 to 5), specify a data-sort-value="…".

Examples

The first column demonstrates how plain numbers are detected and sorted as numbers. The second column shows that with data-sort-type="number" in table header more content detected as numbers. The fourth column shows that with data-sort-value="…" a numeric sortvalue is defined, independent of the cell content.

numbers data-sort-type="number" data-sort-type="number"
-8e3 -8 e3 -8 e3
-3e-3 -3 e-3 -3 e-3
2.000 2-5 km² data-sort-value="3.5" 2-5 km²
3.99 3.99 km² 3.99 km²
4 4 km² 4 km²
90 % 90 Percent data-sort-value="90" about 90 Percent
1E2 100[1] 100[1]
1,000,000.0 1 000 000.0 data-sort-value="1e6" one Million

The thousand separator(,) and digits separator(.) depends on language specific configuration of the Mediawiki software. Currency symbols before or after numbers or the %-symbol will be sorted numerical.

currencies
$ 9
$ 80
$ 70
$ 600
currencies
9 €
80 €
70 €
600 €
currencies
£ 9
£ 80
£ 70
£ 600
currencies
¥ 9
¥ 80
¥ 70
¥ 600
percent
9 %
80 %
70 %
600 %
numbers
−7e270
-1.4285714285714E-13
999e9
7e270

Secondary sort key

It is possible to sort by column A (primary sort key), while for equal values in column A, sort by column B (secondary sort key): first sort by A by clicking the sort button of column A once or twice, then, while holding the shift-key, click the sort button of column B once or twice.

Example:

First click on column Text and then, while holding the shift-key, on Numbers, you'll see that the ordering is on Text (1), Numbers (2).

Numbers Text Dates Currency More text
4 a 01.Jan.2005 4.20 row 1
5 a 05/12/2006 7.15 row 2
1 b 02-02-2004 5.00 row 3
1 a 02-02-2004 5.00 row 4
2 x 13-apr-2005 row 5
2 a 13-apr-2005 row 6
3 a 17.aug.2006 6.50 row 7
3 z 25.aug.2006 2.30 row 8
3 z 28.aug.2006 5.50 row 9
3 z 31.aug.2006 3.77 row 10
3 z 01.sep.2006 1.50 row 11
Bottom

Additional features

Excluding the last row from sorting

Sometimes it is helpful to exclude the last row of a table from the sorting process. This can be achieved by setting class="sortbottom" on the last row. Declaring the last row as a footer (with !) will also exclude it from sorting.

Wiki markup:

{|class="wikitable sortable"
!Name!!Surname!!Height
|-
|John||Smith||1.85
|-
|Ron||Ray||1.89
|-
|Mario||Bianchi||1.72
|- class="sortbottom"
! !!Average:||1.82
|}

What it looks like in your browser:

Name Surname Height
John Smith 1.85
Ron Ray 1.89
Mario Bianchi 1.72
Average: 1.82

Excluding the first row from sorting

The same can be applied for first rows as well, by setting class="sorttop".

Wiki markup:

{|class="wikitable sortable"
!Name!!Surname!!Height
|- class="sorttop"
! !!Average:||1.82
|-
|John||Smith||1.85
|-
|Ron||Ray||1.89
|-
|Mario||Bianchi||1.72
|}
Name Surname Height
Average: 1.82
John Smith 1.85
Ron Ray 1.89
Mario Bianchi 1.72

Making a column unsortable

If you want a specific column not to be sortable, specify class="unsortable" in the attributes of its header cell.

Wiki markup:

{|class="wikitable sortable"
!Numbers!!Alphabet!!Dates!!Currency!!class="unsortable"|Unsortable
|-
|1||Z||02-02-2004||5.00||This
|-
|2||y||13-apr-2005||||Column
|-
|3||X||17.aug.2006||6.50||Is
|-
|4||w||01.Jan.2005||4.20||Unsortable
|-
|5||V||05/12/2006||7.15||See?
|-
!Total: 15!!!!!!Total: 29.55!!
|-
|}

What it looks like in your browser:

Numbers Alphabet Dates Currency Unsortable
1 Z 02-02-2004 5.00 This
2 y 13-apr-2005 Column
3 X 17.aug.2006 6.50 Is
4 w 01.Jan.2005 4.20 Unsortable
5 V 05/12/2006 7.15 See?
Total: 15 Total: 29.55 Original example

Keeping some rows together

If you want that a row will always be below the row just above it and will follow it around, no matter how the sorting is applied, specify class="expand-child" in the attribute of this row.

Wiki markup:

{| class="wikitable sortable"
! style="width:9em"| Country !!data-sort-type="number"| Area
|-
| France
| 674 843 km²
|- class="expand-child" style="font-size:85%; line-height:1.2; color:gray"
| colspan="2" | In Paris is the Eiffel Tower.
|-
| U.K.
| 242 495 km²
|- class="expand-child" style="font-size:85%; line-height:1.2; color:gray"
| colspan="2" | In the U.K. you cannot pay with euros.
|- class="expand-child" style="font-size:85%; line-height:1.2; color:gray"
| colspan="2" | And you drive on the left side of the road.
|-
| Germany
| 357 168 km² 
|- class="expand-child" style="font-size:85%; line-height:1.2; color:gray"
| colspan="2" | Germany includes the former DDR.
|}

What it looks like in your browser:

Country Area
France 674 843 km²
In Paris is the Eiffel Tower.
U.K. 242 495 km²
In the U.K. you cannot pay with euros.
And you drive on the left side of the road.
Germany 357 168 km²
Germany includes the former DDR.

If you put in data-sort-value the same content as above row, keep this rows also together. The original mutual order of these rows is preserved. A better way for this is class expand-child, see above #Keeping some rows together.

Example where data-sort-value is used is the case for the rows about the Netherlands:

{|class="wikitable sortable"
!Country/province!!Capital
|-
|France||Paris
|-
|Netherlands||Amsterdam
|-
|data-sort-value=Netherlands|South Holland||data-sort-value=Amsterdam|The Hague
|-
|U.K.||London
|}
Country/province Capital
France Paris
Netherlands Amsterdam
South Holland The Hague
U.K. London

Special dates

For years BC we can use, for example, !9937-09-23 for -0062-09-23 (subtract the year number BC from 10000, or the absolute value of the astronomical year from 9999).

If a table column contains any or all incomplete dates, this will not cause sorting problems. If only a year and month are given, that incomplete date is positioned alphabetically before the first day of the month in question. Likewise, if only a year is given, the date is positioned before the first month or day given for that year.

Use of #time

Using parser function #time we can put <span style="display:none">&{{#expr:3e11+{{#time:U|..}}}}</span> in front of the displayed date. This works in the range 1 Jan 111, 00:00:00 through 31 Dec 9999, 23:59:59 for the proleptic Gregorian calendar. The added value makes all values positive and the same length (if scientific format would show up an additional step is needed to prevent this). The "&" forces string sort mode.

Dates and times can be entered in any php date/time format. Note that when we have just a year, a month (typically Jan) must be added in the hidden part.

Example using Help:Sorting/date:

input date text date and time as interpreted, with hidden sort key input with visible sort key input with hidden sort key Unix time

To use dates before the year 111, add a multiple of 400, e.g. 6000, to all years, this effectively shifts the range to 1 Jan -5889, 00:00:00 through 31 Dec 3999, 23:59:59, without changing the calendar.

See also:

  • w:Template:Dts - sorting a table by a date column
  • Template:Sd - shows weekday in a separate column before date, and link all dates

Cell spanning multiple rows/cells

A cell which spans more than one row or column is treated as if it were multiple cells with the same value.

rowspan
Date Name Height
01.10.1977 Smith 1.85
11.06.1972 Adams
01.09.1992 Bianchi 1.72
colspan
A B C
A 2 1
B 1 3
C 2

As of MediaWiki Version 1.26 wmf23 (Sept. 2015), sorting of colspanned cells works correctly. Also, missing cells at the end of a row will change after first sort into cells with empty content.

Colspanned cells

The auto-detection of sort mode is done for colspanned cells for each column separately. Defining the sort mode by putting data-sort-type inside the header will specify this sort mode for all colspanned columns.

To use separate sort keys for each column in a colspanned cell, use the CSS hack described here: To allow sorting, the formal number of cells in each row should be equal (If not, all columns become sortable. This should apply at least for the number of cells up to and including the last sortable column.) However, with a CSS hack the number of cells shown in a row can differ from the formal number of cells. For example, two formal cells can be shown as one by specifying a width for the first column, shifting the contents of the second cell to the left, increasing its width by the same amount, and hiding the cell border that would normally be visible. Hidden sort keys can be used to control the sort order of particular rows with respect to each column.

Example:

Country Capital
France Paris
Z M
Sorting with respect to the first column this row sorts like Z, with respect to the second column like M
U.K. London

Static column

A static column, e.g. with row numbers, can be obtained with two side-by-side tables with for each row the same height set in both tables:

Number
1
2
Country Capital
The Netherlands Amsterdam (although The Hague is the seat of government)
France Paris

The style can be adjusted to make it appear as a single table. If for some row the height of that row is too small for the text in a cell on one of the sides, the browser increases it, and there is no longer a match.

Default order

It is not possible to make a table appear sorted by a certain column without the user clicking on it. By default, the rows of a table always appear in the same order as in the wikitext. If you want a table to appear sorted by a certain column, you must sort the wikitext itself in that order; see the next section for one way to do this.

Sorting the wikitext of a table

Sorting the wikitext itself, thus creating a new default sort order, can be done semi-automatically as follows. Take the wikitext of the table without top and bottom lines. Use "find and replace" to replace the cell separators with special code not containing "|". If there are pipes in the table cells, replace all pipes by some code, and replace that code with a newline in front of it (originating from the code for the start of a new row) back. Apply mw:Module:Sort (see mw:Module talk:Sort) at mw:Special:ExpandTemplates by putting: {{#invoke:Sort|f|{{!}}-
{{!}} (with the newline) before, and }} after the wikitext, to sort the items between the pipes, with the desired separator in the result. Discard the items at the start containing "-" and a newline. Restore the cell separators and the pipes in the cells by replacing the temporary codes for them. Readd the top and bottom lines.

This method sorts by the wikitext of the rows, so in principal by the first column (and the second as secondary key), although wikitext codes in the cells of the first column before the content can affect the order.

See Help:Sorting#Maintaining tables sorted by rank for sorting tables by a different column.

Using JavaScript to trigger client-side table sorting

An addition to MediaWiki:Common.js can be used to "re-sort" a table automatically on the client side when the page loads (as if the user had clicked the header.) The example below sorts all the tables on a set of pages by the first column (see the Tablesorter documentation for syntax.)

Note : This appears to break sorting by clicking on headers. It sorts ascending on the clicked on header, but won't sort the other way when clicked on again

function isSortedTablePage() {
    return ( wgPageName == "Page_To_Sort"  || wgPageName == "Other_Page_To_Sort" );
}

jQuery( document ).ready( function( $ ) {
    // wrapped in "mw.loader.using" so this doesn't execute until Tablesorter has loaded
    mw.loader.using( 'jquery.tablesorter', function() {
        if( isSortedTablePage() ) $('table.sortable').tablesorter( {sortList: [ { 0: 'asc'} ]} )
        // or look for tables with an ID attribute of "sortMe" on any page
        // $( '#sortMe' ).tablesorter( {sortList: [ { 0: 'asc'} ]} )
    } );
} );

Basic alphabetic sorting order

demo
!
"
#
$
%
&
'
(
)
*
+
,
-
.
/
0
9
:
;
<
=
>
?
@
[
\
]
^
_
`
A
Z
a
z
A1
Z1
a1
z1
{
|
}
~
É
é
É1
é1

The two-character entries such as A1 demonstrate that A and a are at the same position.

This is not a fully alphabetic sort order: letter case is first folded to lowercase using a basic 1-to-1 conversion table (limited to the Basic Multilingual Plane of Unicode, and whose coverage and completeness still depends on browser versions and on their current implementation of the versioned Unicode Character Database), but letters with diacritics (and all other digits, symbols or special whitespaces or format control characters) will still sort according to the binary encoding of the casefolded letter, using the binary order of the UTF-16 code units (exposed and seen in Javascript through the parsed HTML DOM), but not the binary order of UTF-8 code units in the HTML page, and not of codepoints as one could also expect for encoded characters in supplementary planes).

In addition, no normalization of the Unicode text is being performed (so canonically equivalent strings, that should compare equal or with only very minor binary difference, may sometimes compare very far away, with completely different strings interleaved between them). For this reason, MediaWiki pages should always be encoded with their text in the Normalized Form C (preComposed), as recommended in the HTML standards.

As of today, an UCA-based sort is still not implemented in the client-side Javascript code, but some wikis are implementing a limited form of multilevel collation using custom basic replacement rules tuned for specific languages.

Server issue

It has been observed that the MediaWiki code on the server replaces a regular space before "!" by a non-breaking space &#160;, affecting the sorting order. To avoid this, this blank space can be coded as &#32;, or the exclamation mark may be surrounded by <nowiki> and </nowiki> tags. This is to comply with French typographic rules, where exclamation marks (and a few other punctuations) must be preceded (or sometimes followed) by a space (preferably narrow) which must still be unbreakable when it is effectively needed and present, the substitution being performed as an convenient editing facility of the Wiki code for cases that are very frequent within many texts.

Persistent sort states using cookies

Adding this snippet to your MediaWiki:Common.js page will make the sortable tables remember their columns sort states in a cookie so they look the same next time the page is visited. Each sortable table must have a unique id attribute for its state to be stored in the cookie.

addOnloadHook( function() {
    jQuery('.sortable').each( function() {
        var id = jQuery(this).attr('id');
        document.shCookie = getCookie('sortheader-'+id);
        document.sortheaderId = 0;
        jQuery('#'+id+' a.sortheader').each( function() {
            var id = jQuery(this).parent().parent().parent().parent().attr('id');
            var sh = document.sortheaderId++;
            if( sh+100 == document.shCookie ) { ts_resortTable(this); ts_resortTable(this); }
            if( sh == document.shCookie ) { ts_resortTable(this); sh += 100; }
            jQuery(this).bind('click', {id: id, sh: sh}, function(e) {
                setCookie('sortheader-'+e.data.id, e.data.sh, 1);
                e.data.sh += e.data.sh < 100 ? 100 : -100;
            });
        });
    });
});

function setCookie(c_name,value,exdays) {
    var exdate=new Date();
    exdate.setDate(exdate.getDate() + exdays);
    var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
    document.cookie=c_name + "=" + c_value;
}

function getCookie(c_name) {
    var i,x,y,ARRcookies=document.cookie.split(";");
    for (i=0;i<ARRcookies.length;i++) {
        x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
        y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
        x=x.replace(/^\s+|\s+$/g,"");
        if (x==c_name) return unescape(y);
    }
}

See also

Examples elsewhere:


Links to other help pages

Help contents
Meta · Wikinews · Wikipedia · Wikiquote · Wiktionary · Commons: · Wikidata · MediaWiki · Wikibooks · Wikisource · MediaWiki: Manual · Google
Versions of this help page (for other languages see further)
What links here on Meta or from Meta · Wikipedia · MediaWiki
Reading
Go · Search · Namespace · Page name · Section · Backlinks · Redirect · Category · Image page · Special pages · Printable version
Tracking changes
Recent changes (enhanced) | Related changes · Watching pages · Diff · Page history · Edit summary · User contributions · Minor edit · Patrolled edit
Logging in and preferences
Logging in · Preferences
Editing
Starting a new page · Advanced editing · Editing FAQ · Export · Import · Shortcuts · Edit conflict · Page size
Referencing
Links · URL · Interwiki linking · Footnotes
Style and formatting
Wikitext examples · CSS · Reference card · HTML in wikitext · Formula · Lists · Table · Sorting · Colors · Images and file uploads
Fixing mistakes
Show preview · Reverting edits
Advanced functioning
Expansion · Template · Advanced templates · Parser function · Parameter default · Magic words · System message · Substitution · Array · Calculation · Transclusion
Others
Special characters · Renaming (moving) a page · Preparing a page for translation · Talk page · Signatures · Sandbox · Legal issues for editors
Other languages: