Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Basic Auth
- Notepadplus
- debian
- Windows
- springboot #spring #jackson
- firefox 파이어폭스
- PyLucene
- 가상머신호스트
- VM 호스트 주소
- 윈도우
- 노트패드뿔뿔
- mailutils
- 정규표현식
- Notepad++
- linux ssh root debian
- React #React-Table
- 임펠러
- cifsutils
- startfile
- FTP
- PDFCreator
- Regex
- OpenSCAD
- Notepad
- SFTP
- Printer Driver
- 소스 <script> 로딩 실패
- react #router
- 보안연결실패
Archives
- Today
- Total
JJC's 테크니컬 다이어리
[React] React-Table 지정 컬럼 고정시키하기 본문
React-Table에서 컬럼을 고정하는 방법을 공유합니다.
1. 우선react-table-hoc-fixed-columns react 모듈 을 설치한다.
참조: https://www.npmjs.com/package/react-table-hoc-fixed-columns
npm install react-table-hoc-fixed-columns --save
2. import 문을 삽입한다.
import ReactTable from "react-table";
import 'react-table/react-table.css';
import withFixedColumns from 'react-table-hoc-fixed-columns';
import 'react-table-hoc-fixed-columns/lib/styles.css' // important: this line must be placed after react-table css import
3. Header 속성(attribute)에 fixed 를 추가한다.
{ Header: '안내메시지', accessor: 'errmsg', show: true, fixed:'right',},
4. React-Table 컴포넌트 태그명을 ReactTableFixedColumns으로 변경한다.