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

fixed-table-js

v1.5.3

Published

FiixedTableJS - Fixed Table Layout JavaScript Library

Downloads

27

Readme

Fixed Table JS

FixedTableJS - Fixed Table Layout JavaScript Library

GitHub version npm version

これは何?

tableレイアウトで、タイトル項目のカラムを簡単に固定表示を行える、JavaScriptライブラリです。

demo

デモページ

Support Browsers

Mac

| | | | | | :---------------: | :---------------:| :---------------:| :---------------:| | 52.0.2743.82 ~ | 47.0.1 ~ | 9.1.2 ~ | 39.0 ~ |

Windows

| | | | | | | :---------------: | :---------------:| :---------------:| :---------------:|:---------------:| | 52.0.2743.116 m ~ | 48.0.1 ~ | 11 | 25.10586.0.0 | 39.0 ~ |

Quick start

Clone the repo:

git clone [email protected]:webcyou/fixed-table-js.git

Install with Bower:

bower install fixed-table.js

Install with npm:

npm install fixed-table-js

Basic Usage

<script src="fixed_table.js"></script>

it's a standard table layout.

HTML

<div id="fixedTable">
    <table>
        <thead>....</thead>
        <tbody>
            <tr>
                <th>...</th> or <td>...</td>
                ....
            </tr>
        </tbody>
    </table>
</div>

<thead></thead>と、<tbody><tr></tr></tbody>の最初の子要素が固定されます。

Singleton Object

new FixedTable();

argument

new FixedTable(option);

Table Box Full Mode

new FixedTable({ fullMode: true; });

Option Parameters Reference

| ParametersName | type | DefaultValue | Details | | -------------- |:------------:|:------------:|------------------ | | id | string | 'fixedTable' | CSS ID Name | | fullMode | boolean | false | window full size | | click | boolean | false | click event callBack Function |

Public Function

| Function Name | Argument | Argument Type | Details | | -------------- |:------------------:|:------------------:|------------------ | | changeMode | true, false | boolean | テーブル表示モード切り替え | | setCellStyle | cell style data | object | cellのstyleを切り替え | | click | callback | Function | click event callBack Function |

CallBack Function

fixedTable.click(function(cell: Cell) {
  ...
});

CallBack Parameters Reference

Cell example

Cell {
  id: 14,
  x: 2,
  y: 0,
  width: 228,
  height: 40,
  outerHeight: 57,
  outerWidth: 245,
  borderBottomWidth: "0px",
  borderLeftWidth: "1px",
  borderRightWidth: "0px",
  borderTopWidth: "1px",
  paddingBottom: "8px",
  paddingLeft: "8px",
  paddingRight: "8px",
  paddingTop: "8px",
  parent: "tbody",
  tHeadCell: Cell,
  tagName: "TD",
  isFixed: false,
  boxSizing: "content-box"
}

| Parameters Name | Type | Details | | ------------------ |:------------------:|:----------------------------:| | id | number | cell ID Number | | x | number | x-coordinate | | y | number | y-coordinate | | width | number | contents inner width | | height | number | contents inner height | | outerWidth | number | contents inner outerWidth | | outerHeight | number | contents inner outerHeight | | borderTopWidth | string | contents border top width | | borderRightWidth | string | contents border right width | | borderBottomWidth | string | contents border bottom width | | borderLeftWidth | string | contents border left width | | paddingTop | string | contents padding top | | paddingRight | string | contents padding right | | paddingBottom | string | contents padding bottom | | paddingLeft | string | contents padding left | | parent | string | contents parent node(tbody or thead)| | tHeadCell | Cell | contents thead cell node | | tagName | string | self tagName | | isFixed | boolean | self fixed style | | boxSizing | string | boxSizing style |

Start develop

npm install
gulp 
Server started http://localhost:8088
LiveReload started on port 35729

Start Test

mocha

npm run test

mocha watch

npm run test:watch

Author

Daisuke Takayama Web帳

License

Copyright (c) 2016 Daisuke Takayama Released under the MIT license