mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
72a7ba618f
* chore: update rc-table * add basic table style * checked all logic * checkbox support disabled * selection style * selection support radio * add selections support * selection extra style * select all locale * sorter logic * add more desc * init Filter hooks * init filter hooks * update style * filter style * filter style * fix filter * sort control * ajax it * add expandedable css * expandable view style * fixed style * border style * empty style * fix pagination style * add fixed demo * un-comment * clean up * fix filter check logic * fix overflow & ellipsis conflict * fix tes * adjust scroll shadow * fix border fixed style * add part of test case * add filter test part * more test case * issue related test * filter test * adjust pagination logic * fix pagination test case * all selection test case * table sorter test case * table basic test * fix test case * update faq * update expandable doc * add v4 doc * add summary docs * more demo * fix selection * update snapshot * update test case * fix ff styling * update rc-table * update snapshot * update snapshot * fix lint * fix style lint * fix style * update snapshot * update desc * fix missing icon
89 lines
1.6 KiB
Markdown
89 lines
1.6 KiB
Markdown
---
|
|
order: 28
|
|
title:
|
|
en-US: ellipsis column
|
|
zh-CN: 单元格自动省略
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
设置 `column.ellipsis` 可以让单元格内容根据宽度自动省略。
|
|
|
|
> 列头缩略暂不支持和排序筛选一起使用。
|
|
|
|
## en-US
|
|
|
|
Ellipsis cell content via setting `column.ellipsis`.
|
|
|
|
> Cannot ellipsis table header with sorters and filters for now.
|
|
|
|
```jsx
|
|
import { Table } from 'antd';
|
|
|
|
const columns = [
|
|
{
|
|
title: 'Name',
|
|
dataIndex: 'name',
|
|
key: 'name',
|
|
render: text => <a>{text}</a>,
|
|
width: 150,
|
|
},
|
|
{
|
|
title: 'Age',
|
|
dataIndex: 'age',
|
|
key: 'age',
|
|
width: 80,
|
|
},
|
|
{
|
|
title: 'Address',
|
|
dataIndex: 'address',
|
|
key: 'address 1',
|
|
ellipsis: true,
|
|
},
|
|
{
|
|
title: 'Long Column Long Column Long Column',
|
|
dataIndex: 'address',
|
|
key: 'address 2',
|
|
ellipsis: true,
|
|
},
|
|
{
|
|
title: 'Long Column Long Column',
|
|
dataIndex: 'address',
|
|
key: 'address 3',
|
|
ellipsis: true,
|
|
},
|
|
{
|
|
title: 'Long Column',
|
|
dataIndex: 'address',
|
|
key: 'address 4',
|
|
ellipsis: true,
|
|
},
|
|
];
|
|
|
|
const data = [
|
|
{
|
|
key: '1',
|
|
name: 'John Brown',
|
|
age: 32,
|
|
address: 'New York No. 1 Lake Park, New York No. 1 Lake Park',
|
|
tags: ['nice', 'developer'],
|
|
},
|
|
{
|
|
key: '2',
|
|
name: 'Jim Green',
|
|
age: 42,
|
|
address: 'London No. 2 Lake Park, London No. 2 Lake Park',
|
|
tags: ['loser'],
|
|
},
|
|
{
|
|
key: '3',
|
|
name: 'Joe Black',
|
|
age: 32,
|
|
address: 'Sidney No. 1 Lake Park, Sidney No. 1 Lake Park',
|
|
tags: ['cool', 'teacher'],
|
|
},
|
|
];
|
|
|
|
ReactDOM.render(<Table columns={columns} dataSource={data} />, mountNode);
|
|
```
|