1.0.4 • Published 2 years ago

antd-table-scroll-xaxis-top v1.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Scroll-antd-table-xaxis-top

Too much table data ?

Need scroll down too much to scroll to see the scrollbar then move to see the right part of table.

Do not worry, laowang can help you 🤘, just try this one.

Work with antd v3 and v4, automatically!

Install

yarn add antd-table-scroll-xaxis-top

Worked with antd 3 / 4, and react > 16.8

Demo

Before

./doc/before.gif

After

./doc/after.gif

Live

Example

import { Table, Card } from 'antd'
import { AntdTableScrollXaxisTop } from 'antd-table-scroll-xaxis-top'
// ... in compoent
  <AntdTableScrollXaxisTop>
    <Table scroll={{ x: 'max-content' }} columns={columns} dataSource={dataSource} pagination={false} />
  </AntdTableScrollXaxisTop>

From CDN

<script src="https://unpkg.com/antd-table-scroll-xaxis-top/dist/index.umd.min.js"></script>

Global var name is AntdTableScrollXaxisTop.

The component is a property. Use it this way.

const { AntdTableScrollXaxisTop } = window.AntdTableScrollXaxisTop

So the import way is always

import { AntdTableScrollXaxisTop } from 'antd-table-scroll-xaxis-top'

Api

proptyperequireddescription
prefixClsstringnosame with antd ConfigProvider prefixCls, unless you have a customized version antd, you should not use it
debugNamestringnoshow some debug info with this for prefix
childrenTableyesantd Table, must one and only one Table child
className and morenoall div acceptable props can be used

General questions

  • Why my table does not has xaxis scroll bar after use this?

    • Set each column with a confirm width, as { title: 'xxx', dataIndex: 'yyy', width: 200 }

    • Set Table prop scroll, as scroll={{ x: 'max-content' }}

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

3 years ago