Table
1行目・一列目を固定表示することにも対応させた、汎用的なTableレイアウトの作成例です。
変数でボーダースタイルを調整できるようにしておくことで、固定表示に対応できるように設計しています。
Import
Section titled “Import” ソースコードを手動でコピー&ペーストしてご利用ください。
import Table from '@/components/lism/Table/index.jsx';
↓
Preview
Header 1 | Header 2 | Header 3 | Header 4 |
---|---|---|---|
Cell 1 | Cell 2 | Cell 3 | Cell 4 |
Cell 2-1 | Cell 2-2 | Cell 2-3 | Cell 2-4 |
Cell 3-1 | Cell 3-2 | Cell 3-3 | Cell 3-4 |
Footer 1 | Footer 2 | Footer 3 | Footer 4 |
<Table> <caption>Caption</caption> <thead>...</thead> <tbody>...</tbody> <tfoot>...</tfoot></Table>
↓
—bdwXで左右のボーダーをなくし、thのカラーリングを指定する例
Header 1 | Header 2 | Header 3 | Header 4 |
---|---|---|---|
Cell 1 | Cell 2 | Cell 3 | Cell 4 |
Cell 2-1 | Cell 2-2 | Cell 2-3 | Cell 2-4 |
Cell 3-1 | Cell 3-2 | Cell 3-3 | Cell 3-4 |
Footer 1 | Footer 2 | Footer 3 | Footer 4 |
<Table thBgc='base-2' bdwX='1px'> <thead>...</thead> <tbody>...</tbody> <tfoot>...</tfoot></Table>
スクロール時の固定表示
Section titled “スクロール時の固定表示”以下のような2つのバリエーションクラスをこの例では定義しています。
- セル1列目を固定する
c--table--fix1stCell
- theadを固定する
c--table--fixHead
↓
scroll時にtheadと、1列目のセルを固定する例
Header 1 | Header 2 | Header 3 | Header 3 | Header 3 | Header 3 |
---|---|---|---|---|---|
Cell 1 | Cell 2 | Cell 3 | Cell 4 | Cell 2 | Cell 3 |
Cell 1 | Cell 2 | Cell 3 text | Cell 4 | Cell 2 | Cell 3 text |
Cell 2 | … | Cell 4 | Cell 2 | … | |
Cell 1 | Cell 2 | Cell 3 text | Cell 4 | Cell 2 | Cell 3 text |
Cell 1 | Cell 2 | … | Cell 4 | Cell 2 | … |
Cell 1 | Cell 2 | … | Cell 4 | Cell 2 | Cell 3 text |
<Frame ov='auto' maxH='20rem'> <Table variant='fix1stCell,fixHead' thBgc='base-2' style={{'--cell-minIs':'10rem','--bdwwX': '1px'}}> <thead>...</thead> <tbody>...</tbody> <tfoot>...</tfoot> </Table></Frame>