HTML | Make HTML table sortable on column click

Author - Ashish
15.06.2017
|
0 Comments
|

When we need to sort an HTML table on click of any of its column headers then we can use sortable.js:

Download library file sorttable.js.
Add this js file to the current page.
Add sortable class to the table for which sorting is required.

If you have many tables on the current page and you want every table to be sortable then add this function to any of your js file included in the page and call this function onload of the page:

function makeAllSortable() {
    parent = document.body;
    var t = parent.getElementsByTagName('table'),
    i = t.length;
    while (--i >= 0) {
    if (t[i].id.length != 0) {
    $j('#' + t[i].id).addClass("sortable");
    sorttable.makeSortable(document.getElementById(t[i].id));
    } else
    {
    t[i].id = "table" + i;
    $j('#table' + i).addClass("sortable");
    sorttable.makeSortable(document.getElementById('table' + i));
    }
  }
}
Webner Solutions is a Software Development company focused on developing Insurance Agency Management Systems, Learning Management Systems and Salesforce apps. Contact us at dev@webners.com for your Insurance, eLearning and Salesforce applications.

Leave a Reply

Your email address will not be published.