Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

table-sort-js

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

table-sort-js

A JavaScript client-side HTML table sorting library with no dependencies required.

  • 1.3.7
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2K
decreased by-9.92%
Maintainers
1
Weekly downloads
 
Created
Source

table-sort-js table-sort-js table-sort-js table-sort-js table-sort-js

table-sort-js.

  • Description: A JavaScript client-side HTML table sorting library with no dependencies required.

  • Demo: https://leewannacott.github.io/Portfolio/#/GitHub.

  • Download: https://leewannacott.github.io/table-sort-js/table-sort.js

  • NPM: https://www.npmjs.com/package/table-sort-js.

Instructions:
  • Add class="table-sort" to HTML table tags. Click on column headers to sort.
Classes:
table classesDescription
"table-sort"Make the table sortable! (Words, numbers, dates)
"table-arrows"Display ascending or descending triangle.
th classesDescription
"order-by-desc"Order by descending on first click. (default is aescending)
"file-size"Sort file sizes(B->TiB) uses the binary prefix. (e.g KiB)
Example using npm and ReactJS:
Install :npm install table-sort-js
import React, { Component } from "react";
import tableSort from "table-sort-js/table-sort.js";
export class App extends Component {
  componentDidMount() {
    tableSort()
    }
    render(){
      return(
      <div>
      <table className="table-sort">
          <thead>
              <tr>
                  <th>Alphabet</th>
                  <th className="order-by-desc">Order</th>
              </tr>
          </thead>
          <tbody className="table-hover">
                  <tr>
                      <td>Alpha</td>
                      <td>1</td>
                  </tr>
                  <tr>
                      <td>Bravo</td>
                      <td>2</td>
                  </tr>
                  <tr>
                      <td>Charlie</td>
                      <td>3</td>
                  </tr>
            </tbody>
        </table>
        </div>
    );
    }
  }
export default App;
HTML Example:

Download: https://leewannacott.github.io/table-sort-js/table-sort.js

<script src="table-sort.js"></script>
<table class="table-sort">
  <thead>
    <tr>
      <th>Last Name</th>
      <th>First Name</th>
      <th class="order-by-desc">Birth Date</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Franklin</td>
      <td>Benjamin</td>
      <td>1706/1/17</td>
    </tr>
    <tr>
      <td>Carnegie</td>
      <td>Andew</td>
      <td>1835/11/25</td>
    </tr>
    <tr>
      <td>Twain</td>
      <td>Mark</td>
      <td>1835/11/30</td>
    </tr>
  </tbody>
</table>
Notes:
  • Makes use of natural sorting to sort numerical values correctly.
  • If <thead> does not exist it will be created by using data from first row. <tbody> is optional.

Keywords

FAQs

Package last updated on 02 May 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc