skip to content

JavaScript: DHTML Sorting Using OOP - Example 1

This is a stand-alone version of Example 1 from DHTML Sorting Using OOP.

Demonstration

Click on a column header to sort by that column, or use the form below.

id colour random
1powderblue90.78
2peachpuff96.69
3lightgreen52.1
4pink20.12
5lavender92.39
6powderblue76.45
7peachpuff12.81
8powderblue91.53
9powderblue82.37
10lavender23.6
11powderblue13.6
12lightgoldenrodyellow85.87
13peachpuff11.03
14lightgreen55.92
15pink48.55
16lightgoldenrodyellow90.59
17powderblue78.69
18lavender82.28
19lavender20.67
20peachpuff15.95

Instructions for implementation

Before proceeding you should view the source code for this page as everything you need is visible there - and clearly marked. The code has been stripped down to make it as understandable as possible.

The first step is to include the external JavaScript file. In this case we've decided to use the 'shell sort' version:

<script src="shellsort.js"></script>

You will need to copy the JavaScript file to your server to avoid our hot-link protection.

Then we need to properly mark up and reference the data to be sorted. This means using a TABLE structure similar to the following:

<table> <thead> <!-- rows to be preserved --> </thead> <tbody id="data"> <!-- rows to be sorted --> </tbody> </table>

We're going to use the THEAD section to hold the column headers which are also links that trigger sorting, and the TBODY section for the data to be sorted. The id value must be unique on the page and is the 'handle' used by JavaScript to reference that node (see below).

Now we add the following JavaScript code after the table to initialise the sort:

<script> var dataTable = document.querySelector("#data"); var sortTable = new shellSort(dataTable, "TR", "TD"); </script>

The dataTable variable points to the TBODY node that contains the rows of data to be sorted. The sortTable variable is an instance of the shellSort object as defined in the external JavaScript file.

Now that we've (hopefully) successfully initialised the shellSort object, we can use it's single public function:

sortTable.sort(0); /* sort by 1st column (ascending) */ sortTable.sort(1, true); /* sort by 2nd column (descending) */ sortTable.sort(2, false, 'a'); /* sort on contents of first 'a' node in 3rd column (ascending) */

In the above example, the links at the top of each column will sort by that column, using the direction indicated by the checkbox in the form below the table.

The form provides a similar functionality. When a value is chosen in the select box or the checkbox is clicked, the table is sorted by the selected column, in the direction indicated by the checkbox.

To sort by a value that is not visible in the table, you can add data-sort="..." attributes to the elements in that column containing the values to use in sorting.

As mentioned previously, to use a different sort algorithm you need to:

  1. include the relevant external JavaScript file; and
  2. instantiate the corresponding class ('shellSort' in this example).

Questions or comments or want to tell us how you're using the code? Use the feedback link below.

< JavaScript

User Comments

Post your comment or question

21 October, 2015

Hi, I'm writing email to say thanks.
your post helped me a lot to understanding of sorting in JavaScript.
I've searched many web sites In my opinion, your web site is the most easiest to understanding however English is not my mother language.

top