Gathering detailed insights and metrics for react-sticky-table
Gathering detailed insights and metrics for react-sticky-table
Gathering detailed insights and metrics for react-sticky-table
Gathering detailed insights and metrics for react-sticky-table
react-table-sticky
Sticky components for react-table v7
sticky-react-table
A super flexible, scalable and robust table with sticky header and columns for all your tabular needs.
cm-react-sticky-table
A table to show data in an organized form, with interactive capabilities of sorting, searching, paginating etc and applied stickiness in columns, rows
experium-react-sticky-table
Dynamically sized fixed header and columns for tables
Responsive and dynamically-sized fixed headers and columns for tables
npm install react-sticky-table
Typescript
Module System
Node Version
NPM Version
dynamic sticky count supported & npmignore updated
Updated on Oct 17, 2020
more than 2 stickies bug fix
Updated on May 12, 2020
multiple stickies
Updated on May 06, 2020
sticky right column & footer, custom borders
Updated on Feb 26, 2020
package fix
Updated on Apr 22, 2018
Various bug fixes
Updated on Apr 14, 2018
JavaScript (95.76%)
CSS (4.24%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
215 Stars
162 Commits
58 Forks
8 Watchers
34 Branches
9 Contributors
Updated on Nov 20, 2024
Latest Version
5.1.11
Package Id
react-sticky-table@5.1.11
Size
7.42 kB
NPM Version
6.13.4
Node Version
12.15.0
Published on
Oct 17, 2020
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
3
31
Responsive and dynamically-sized fixed headers, footers, and columns for tables.
SEEKING EXAMPLE LINKS - please comment in this issue with your applications using react-sticky-table
display: table-cell
and the css selector .sticky-table-cell
)npm install react-sticky-table --save
1import React, {Component} from 'react'; 2import {StickyTable, Row, Cell} from 'react-sticky-table'; 3 4export default class BasicExample extends Component { 5 render() { 6 return ( 7 <div> 8 <div style={{width: '100%', height: '400px'}}> 9 <StickyTable> 10 <Row> 11 <Cell>Header 1</Cell> 12 <Cell>Header 2</Cell> 13 </Row> 14 <Row> 15 <Cell>Cell 1</Cell> 16 <Cell>Cell 2</Cell> 17 </Row> 18 </StickyTable> 19 </div> 20 </div> 21 ); 22 } 23}
stickyHeaderCount
: int
- default: 1
leftStickyColumnCount
: int
- default: 1
rightStickyColumnCount
: int
- default: 0
stickyFooterCount
: int
- default: 0
headerZ
: int
- default: 2
(sticky corners are the greater of their two sides + 1)leftColumnZ
: int
- default: 2
rightColumnZ
: int
- default: 2
footerZ
: int
- default: 2
borderWidth
: default: '2px'
borderColor
: default: '#e5e5e5'
wrapperRef
: default: undefined
, value: React ref
- a reference you can use for the wrapper element that has scroll events on itDisable sticky header:
1<StickyTable stickyHeaderCount={0}>
Disable sticky column:
1<StickyTable leftStickyColumnCount={0}>
Disable borders:
1<StickyTable borderWidth={0}>
(The MIT License)
Copyright (c) 2017 Henrybuilt.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 2/22 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
113 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More