npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bitandblack-table-sorter

v1.0.0

Published

A jQuery plugin to sort tables

Downloads

4

Readme

Codacy Badge

tableSorter

A small jquery plugin to sort tables

Installation

This package is available for node and also for composer.

NPM

Install TableSorter by running $ npm install bitandblack-table-sorter.

Yarn

Install TableSorter by running $ yarn add bitandblack-table-sorter.

Composer

Install TableSorter by running $ composer require bitandblack/table-sorter and $ composer update.

How to use

Init

TableSorter needs to be initialised inside the jQuery ready function:

$(document)
    .ready(function() {
        $('#yourtable').tableSorter();
    })
; 

HTML Tables

TableSorter needs a classical table including thead and tbody:

<table id="yourtable">
    <thead>
        <tr>
            <th>row10</th>
            <th>row20</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>row11</td>
            <td>row21</td>
        </tr>
        <tr>
            <td>row12</td>
            <td>row22</td>
        </tr>
    </tbody>
</table>

Optional

Sort value

If you want to sort your table differently from your table row values, you only need to add the data-sort-value attribute to your table cells. It is possible to change these values dynamically, TableSorter will find them from its own.

Disable columns

You can disable columns for getting sorted. Init TableSorter like this:

$(document)
    .ready(function() { 
        $('#yourtable')
            .tableSorter({
                headers: { 
                    0: { 
                        sorter: false 
                    }
                }
            })
        ;
    })
; 

Keep rows together

If you want to keep two or more rows together no matter how the sort option is, you only have to add two attributes: the data-sort-pair-id and data-sort-pair-master respectively data-sort-pair-slave. Then it should look like this:

<table id="yourtable">
    <thead>
        <tr>
            <th>row10</th>
            <th>row20</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>row11</td>
            <td>row21</td>
        </tr>
        <tr data-sort-pair-id="1" data-sort-pair-master>
            <td>row12</td>
            <td>row22</td>
        </tr>
        <tr data-sort-pair-id="1" data-sort-pair-slave>
            <td>row13</td>
            <td>row23</td>
        </tr>
        <tr>
            <td>row14</td>
            <td>row24</td>
        </tr>
    </tbody>
</table>

Callbacks

The give you more control, you can use the callbacks onsortstart and onsortfinish. If you set callbackBehaviour with onsortstart to break, tableSorter will execute the callback and run without sorting then. This can be useful for example if you want to load a whole new table that is already sorted or contains new data.

Help

Feel free to contact as under [email protected].