Convert Figma logo to code with AI

Mottie logotablesorter

Github fork of Christian Bach's tablesorter plugin + awesomeness ~

2,602
754
2,602
255

Top Related Projects

An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation, Vue.js)

Tables plug-in for jQuery

DataTables but in TypeScript transpiled to Vanilla JS

Semantic is a UI component framework based around useful principles from natural language.

React components for efficiently rendering large lists and tabular data

12,496

The best JavaScript Data Table for building Enterprise Applications. Supports React / Angular / Vue / Plain JavaScript.

Quick Overview

Tablesorter is a jQuery plugin for turning a standard HTML table with THEAD and TBODY tags into a sortable table without page refreshes. It works on all modern browsers and provides a wide range of features including multi-column sorting, custom parsers, and various widgets for enhanced functionality.

Pros

  • Highly customizable with numerous options and widgets
  • Supports various data types and custom parsers
  • Responsive and works well on mobile devices
  • Active development and community support

Cons

  • Requires jQuery, which may not be ideal for all projects
  • Can be complex to set up for advanced use cases
  • Performance may degrade with very large tables
  • Documentation can be overwhelming due to the extensive feature set

Code Examples

  1. Basic initialization:
$(function() {
  $("table").tablesorter();
});
  1. Multi-column sorting:
$("table").tablesorter({
  sortList: [[0,0], [1,0]],
  headers: {
    0: { sorter: "text" },
    1: { sorter: "digit" }
  }
});
  1. Using a custom parser:
$.tablesorter.addParser({
  id: 'customDate',
  is: function(s) {
    return /\d{2}\/\d{2}\/\d{4}/.test(s);
  },
  format: function(s) {
    var date = s.split('/');
    return new Date(date[2], date[1]-1, date[0]).getTime();
  },
  type: 'numeric'
});

$("table").tablesorter({
  headers: {
    2: { sorter: 'customDate' }
  }
});

Getting Started

  1. Include jQuery and tablesorter scripts in your HTML:
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="path/to/jquery.tablesorter.min.js"></script>
  1. Add the tablesorter CSS file:
<link rel="stylesheet" href="path/to/theme.default.min.css">
  1. Initialize tablesorter on your table:
$(function() {
  $("table").tablesorter();
});
  1. Ensure your table has proper THEAD and TBODY structure:
<table>
  <thead>
    <tr>
      <th>Header 1</th>
      <th>Header 2</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
    </tr>
  </tbody>
</table>

Competitor Comparisons

An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation, Vue.js)

Pros of bootstrap-table

  • Built specifically for Bootstrap, ensuring seamless integration with Bootstrap-based projects
  • Offers more built-in features like pagination, search, and export options out of the box
  • Supports both client-side and server-side data processing

Cons of bootstrap-table

  • Less flexible for non-Bootstrap projects or custom styling
  • May have a steeper learning curve due to its extensive feature set
  • Larger file size compared to tablesorter, which could impact page load times

Code Comparison

bootstrap-table:

<table data-toggle="table" data-url="data.json">
  <thead>
    <tr>
      <th data-field="id">ID</th>
      <th data-field="name">Name</th>
    </tr>
  </thead>
</table>

tablesorter:

<table id="myTable" class="tablesorter">
  <thead>
    <tr>
      <th>ID</th>
      <th>Name</th>
    </tr>
  </thead>
  <tbody>
    <!-- Table content -->
  </tbody>
</table>

Both libraries offer powerful table functionality, but bootstrap-table is more feature-rich and Bootstrap-oriented, while tablesorter is lighter and more flexible for various styling needs. The choice between them depends on project requirements and existing technology stack.

Tables plug-in for jQuery

Pros of DataTables

  • More comprehensive feature set, including built-in pagination, filtering, and advanced search capabilities
  • Extensive documentation and active community support
  • Better out-of-the-box styling and theming options

Cons of DataTables

  • Larger file size and potentially slower performance for simple use cases
  • Steeper learning curve due to more complex API and configuration options
  • May be overkill for basic table sorting needs

Code Comparison

tablesorter:

$("#myTable").tablesorter({
  theme: 'blue',
  widgets: ['zebra', 'filter']
});

DataTables:

$('#myTable').DataTable({
  paging: true,
  searching: true,
  ordering: true
});

Both libraries offer easy initialization, but DataTables provides more built-in features with its default configuration. tablesorter requires additional widgets for similar functionality, but this modular approach can lead to a smaller footprint for simpler use cases.

While tablesorter focuses primarily on sorting and filtering, DataTables offers a more comprehensive solution for table manipulation and presentation. The choice between the two depends on the specific requirements of your project, with tablesorter being more lightweight and DataTables offering more advanced features out of the box.

DataTables but in TypeScript transpiled to Vanilla JS

Pros of simple-datatables

  • Lightweight and dependency-free, making it easier to integrate into projects
  • Modern JavaScript implementation with better performance
  • Supports server-side processing for handling large datasets efficiently

Cons of simple-datatables

  • Less extensive feature set compared to tablesorter
  • Smaller community and fewer available extensions
  • Limited customization options for advanced use cases

Code Comparison

tablesorter:

$("#myTable").tablesorter({
  theme: 'blue',
  widgets: ['zebra', 'filter'],
  sortList: [[0,0], [1,0]]
});

simple-datatables:

const dataTable = new DataTable("#myTable", {
  searchable: true,
  sortable: true,
  paging: true
});

Both libraries offer easy initialization, but tablesorter provides more options out-of-the-box. simple-datatables has a cleaner, more modern syntax but may require additional configuration for advanced features.

Semantic is a UI component framework based around useful principles from natural language.

Pros of Semantic-UI

  • Comprehensive UI framework with a wide range of components
  • Responsive design and mobile-first approach
  • Extensive theming capabilities and customization options

Cons of Semantic-UI

  • Larger file size and potential performance impact
  • Steeper learning curve due to its extensive features
  • Less focused on specific table functionality compared to tablesorter

Code Comparison

Semantic-UI (basic table initialization):

<table class="ui celled table">
  <thead>
    <tr><th>Header</th><th>Header</th></tr>
  </thead>
  <tbody>
    <tr><td>Cell</td><td>Cell</td></tr>
  </tbody>
</table>

tablesorter (basic table initialization):

$(document).ready(function() {
  $("table").tablesorter();
});

Summary

Semantic-UI is a comprehensive UI framework offering a wide range of components and customization options, while tablesorter is specifically focused on enhancing table functionality. Semantic-UI provides a more holistic approach to web design but may have a larger footprint and learning curve. tablesorter, on the other hand, offers a lightweight solution for table sorting and filtering without the additional overhead of a full UI framework.

React components for efficiently rendering large lists and tabular data

Pros of react-virtualized

  • Optimized for rendering large lists and tabular data efficiently
  • Supports windowing techniques to render only visible items
  • Offers a variety of components for different use cases (Grid, List, Table, etc.)

Cons of react-virtualized

  • Steeper learning curve due to its complexity and React-specific implementation
  • May be overkill for simpler table sorting needs
  • Requires more setup and configuration compared to tablesorter

Code Comparison

react-virtualized:

import { Table, Column } from 'react-virtualized';

<Table
  width={300}
  height={300}
  headerHeight={20}
  rowHeight={30}
  rowCount={list.length}
  rowGetter={({ index }) => list[index]}
>
  <Column label="Name" dataKey="name" width={100} />
  <Column label="Age" dataKey="age" width={100} />
</Table>

tablesorter:

$("table").tablesorter({
  theme: 'blue',
  widgets: ['zebra', 'filter'],
  sortList: [[0,0], [1,0]]
});

Summary

react-virtualized is a powerful React library for efficiently rendering large datasets, offering advanced features like windowing and various components. However, it has a steeper learning curve and may be excessive for simple table sorting. tablesorter, on the other hand, is easier to implement for basic sorting needs but lacks the performance optimizations and React integration of react-virtualized.

12,496

The best JavaScript Data Table for building Enterprise Applications. Supports React / Angular / Vue / Plain JavaScript.

Pros of ag-grid

  • More feature-rich with advanced functionality like pivoting, grouping, and filtering
  • Better performance for large datasets, handling millions of rows efficiently
  • Extensive documentation and enterprise support options

Cons of ag-grid

  • Steeper learning curve due to its complexity and extensive API
  • Larger file size and potential performance impact on smaller datasets
  • Commercial license required for some advanced features

Code Comparison

tablesorter:

$("table").tablesorter({
  theme: 'blue',
  widgets: ['zebra', 'filter'],
  sortList: [[0,0], [1,0]]
});

ag-grid:

new agGrid.Grid(gridDiv, {
  columnDefs: columnDefs,
  rowData: rowData,
  defaultColDef: {
    sortable: true,
    filter: true
  }
});

Summary

ag-grid offers more advanced features and better performance for large datasets, making it suitable for complex enterprise applications. However, it comes with a steeper learning curve and potential licensing costs. tablesorter is simpler to implement and lighter-weight, making it a good choice for basic sorting needs on smaller datasets. The code comparison shows that ag-grid requires more configuration but offers more built-in functionality, while tablesorter focuses on simplicity and ease of use.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

tablesorter (FORK) is a jQuery plugin for turning a standard HTML table with THEAD and TBODY tags into a sortable table without page refreshes. tablesorter can successfully parse and sort many types of data including linked data in a cell. This forked version adds lots of new enhancements including: alphanumeric sorting, pager callback functons, multiple widgets providing column styling, ui theme application, sticky headers, column filters and resizer, as well as extended documentation with a lot more demos.

NPM Version devDependency Status zenhub-image

Notice!

  • Because of the change to the internal cache, the tablesorter v2.16+ core, filter widget and pager (both plugin & widget) will only work with the same version or newer files.

Documentation

Questions?

irc-image slack-image stackoverflow-image

  • Check the FAQ page.
  • Search the main documentation (click the menu button in the upper left corner).
  • Search the issues to see if the question or problem has been brought up before, and hopefully resolved.
  • If someone is available, ask your question in the #tablesorter IRC channel at freenode.net.
  • Ask your question at Stackoverflow using a tablesorter tag.
  • Please don't open a new issue unless it really is an issue with the plugin, or a feature request. Thanks!

Demos

Features

  • Multi-column alphanumeric sorting and filtering.
  • Multi-tbody sorting - see the options table on the main document page.
  • Supports Bootstrap v2-4.
  • Parsers for sorting text, alphanumeric text, URIs, integers, currency, floats, IP addresses, dates (ISO, long and short formats) & time. Add your own easily.
  • Inline editing - see demo.
  • Support for ROWSPAN and COLSPAN on TH elements.
  • Support secondary "hidden" sorting (e.g., maintain alphabetical sort when sorting on other criteria).
  • Extensibility via widget system.
  • Cross-browser: IE 6.0+, FF 2+, Safari 2.0+, Opera 9.0+, Chrome 5.0+.
  • Small code size, starting at 25K minified.
  • Works with jQuery 1.2.6+ (jQuery 1.4.1+ needed with some widgets).
  • Works with jQuery 1.9+ ($.browser.msie was removed; needed in the original version).

Licensing

Download

Related Projects

Contributing

If you would like to contribute, please...

  1. Fork.
  2. Make changes in a branch & add unit tests.
  3. Run grunt test (if qunit fails, run it again - it's fickle).
  4. Create a pull request.

Special Thanks

  • Big shout-out to Nick Craver for getting rid of the eval() function that was previously needed for multi-column sorting.
  • Big thanks to thezoggy for helping with code, themes and providing valuable feedback.
  • Big thanks to ThsSin- for taking over for a while and also providing valuable feedback.
  • Thanks to prijutme4ty for numerous contributions!
  • Also extra thanks to christhomas and Lynesth for help with code.
  • And, of course thanks to everyone else that has contributed, and continues to contribute through pull requests and open issues to this forked project!

Recent Changes

View the complete change log here.

Version 2.32.0 (2024-08-13)

  • Core:
    • Remove ie8 support (Grunt limitation)
    • Initialize headers as null
  • Grouping: Fix self-closing icon tags to support jQuery 3.5+
  • Parser-input-select: Don't use updateCell if cell has parser-false class

Version 2.31.3 (2020-03-03)

  • Core:
  • AlignChar:
  • Pager:
    • Restore first row in cacheIndex. Fixes issues #1714 & #1710.
  • Docs:
    • Update to jQuery 3.4.1 & migrate 3.1.0.
    • Update to Bootstrap 4.4.1.
    • CSS cleanup - code font size was off.

Version 2.31.2 (2019-12-01)

NPM DownloadsLast 30 Days