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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@jaisocx/css-table-ordered

v2.3.1

Published

Css sites tool styling a server side rendered database table data to a grid view, with solutions for sticky scroll and order by on columns via browser's js engine

Downloads

18

Readme

CSS Table Ordered

Status

Ready

The aim of the setup

For the Jaisocx Sits Server Files Listing server side rendered CssTable with JSP.

The jaisocx templates for files listing, https exceptions and others will be available on public git service in several months.

The latest .tgz archive (v.2.3.1 26th of month August 2025)

https://sandbox.brightday.email/sites_tools/js_tools/CssTableOrdered/jaisocx-css-table-ordered-2.3.1.tgz

Watch site in action

With Orderby on laptops and larger displays.

https://sandbox.brightday.email/sites_tools/js_tools/CssTableOrdered/index.example.html

https://sandbox.brightday.email/sites_tools/js_tools/CssTableOrdered/css_table_ordered_3_records.example.html

https://sandbox.brightday.email/sites_tools/js_tools/CssTableOrdered/css_table_ordered.example.html

https://sandbox.brightday.email/sites_tools/js_tools/CssTableOrdered/css_table_ordered.jaisocx_folder_listing.example.html

Same html with theme jaisocx folder listing

The mobile portrait view was fine tuned for the folder listing in the Jaisocx Sites Server.

https://sandbox.brightday.email/sites_tools/js_tools/CssTableOrdered/jaisocx-folder-listing-preview.html

Tasks to do

  1. css themes npm package example to install on a Jaisocx server instance with @jaisocx/css-table-ordered

Usage

  <link rel="stylesheet" href="/sites_tools/css_tools/CssCleanStart_2/MediaAndStyles/CssCleanStart_2_main_resolved_minimal.css" />
  <link rel="stylesheet" href="/sites_tools/css_tools/CssTable/MediaAndStyles/CssTable_main_resolved_minimal.css" />



  <link rel="stylesheet" href="/sites_tools/js_tools/CssTableOrdered/MediaAndStyles/themes/theme_fixed_columns_labels/theme_fixed_columns_labels.css" />



  <script src="sites_tools/js_tools/CssTableOrdered/transpiled/Simple/scroll/CssTableScroll.js"></script>
  <script src="sites_tools/js_tools/CssTableOrdered/transpiled/Simple/orderby/CssTableOrderby.js"></script>



  <script>

    let orderbyClassInstance = new Object();

    function addScrollEventHandlers() {
      cssTableScrollInstance = new CssTableScroll();
      cssTableScrollInstance.addScrollEventHandlers();
    }

    function addOrderbyEventHandler() {
      orderbyClassInstance = new CssTableOrderby();
        orderbyClassInstance.setRowsNumberNotOrdered( 1 );
      let eventHandlerRetval = orderbyClassInstance.addOrderbyEventHandler();
    }



    // DOCUMENT ONLOAD
    document.addEventListener('DOMContentLoaded', () => {

      addScrollEventHandlers();

      addOrderbyEventHandler();

    });

  </script>

npm for webpack

npm install @jaisocx/css-table-ordered