diff --git a/components/table/index.en-US.md b/components/table/index.en-US.md index 8b4da94147e2..d2570c5d3c62 100644 --- a/components/table/index.en-US.md +++ b/components/table/index.en-US.md @@ -79,7 +79,7 @@ const columns = [ | rowClassName | Row's className | Function(record, index):string | - | | | rowKey | Row's unique key, could be a string or function that returns a string | string\|Function(record):string | `key` | | | rowSelection | Row selection [config](#rowSelection) | object | null | | -| scroll | Set horizontal or vertical scrolling, can also be used to specify the width and height of the scroll area, could be number, percent value, `true` and ['max-content'](https://developer.mozilla.org/en-US/docs/Web/CSS/width) | { x: number \| true, y: number, scrollToFirstRowOnChange: boolean } | - | | +| scroll | Whether the table can be scrollable, [config](#scroll) | object | - | | | showHeader | Whether to show table header | boolean | `true` | | | size | Size of table | `default` \| `middle` \| `small` | `default` | | | title | Table title renderer | Function(currentPageData) | | | @@ -180,6 +180,14 @@ Properties for row selection. | onSelectAll | Callback executed when select/deselect all rows | Function(selected, selectedRows, changeRows) | - | | | onSelectInvert | Callback executed when row selection is inverted | Function(selectedRows) | - | | +### scroll + +| Property | Description | Type | Default | Version | +| --- | --- | --- | --- | --- | +| x | Set horizontal scrolling, can also be used to specify the width and height of the scroll area, could be number, percent value, true and ['max-content'](https://developer.mozilla.org/zh-CN/docs/Web/CSS/width#max-content) | number \| true | - | | +| y | Set vertical scrolling, can also be used to specify the width and height of the scroll area, could be number, percent value, true and ['max-content'](https://developer.mozilla.org/zh-CN/docs/Web/CSS/width#max-content) | number \| true | - | | +| scrollToFirstRowOnChange | Whether to scroll to the top of the table when paging, sorting, filtering changes | boolean | - | 3.24.0 | + ### selection | Property | Description | Type | Default | Version | diff --git a/components/table/index.zh-CN.md b/components/table/index.zh-CN.md index d34840e7216d..77bd73e908e0 100644 --- a/components/table/index.zh-CN.md +++ b/components/table/index.zh-CN.md @@ -84,7 +84,7 @@ const columns = [ | rowClassName | 表格行的类名 | Function(record, index):string | - | | | rowKey | 表格行 key 的取值,可以是字符串或一个函数 | string\|Function(record):string | 'key' | | | rowSelection | 表格行是否可选择,[配置项](#rowSelection) | object | null | | -| scroll | 设置横向或纵向滚动,也可用于指定滚动区域的宽和高,可以设置为像素值,百分比,`true` 和 ['max-content'](https://developer.mozilla.org/zh-CN/docs/Web/CSS/width#max-content) | { x: number \| true, y: number, scrollToFirstRowOnChange: boolean } | - | | +| scroll | 表格是否可滚动,[配置项](#scroll) | object | - | | | showHeader | 是否显示表头 | boolean | true | | | size | 表格大小 | default \| middle \| small | default | | | title | 表格标题 | Function(currentPageData) | | | @@ -185,6 +185,14 @@ const columns = [ | onSelectAll | 用户手动选择/取消选择所有行的回调 | Function(selected, selectedRows, changeRows) | - | | | onSelectInvert | 用户手动选择反选的回调 | Function(selectedRows) | - | | +### scroll + +| 参数 | 说明 | 类型 | 默认值 | 版本 | +| --- | --- | --- | --- | --- | +| x | 设置横向滚动,也可用于指定滚动区域的宽和高,可以设置为像素值,百分比,true 和 ['max-content'](https://developer.mozilla.org/zh-CN/docs/Web/CSS/width#max-content) | number \| true | - | | +| y | 设置纵向滚动,也可用于指定滚动区域的宽和高,可以设置为像素值,百分比,true 和 ['max-content'](https://developer.mozilla.org/zh-CN/docs/Web/CSS/width#max-content) | number \| true | - | | +| scrollToFirstRowOnChange | 当分页、排序、筛选变化后是否滚动到表格顶部 | boolean | - | 3.24.0 | + ### selection | 参数 | 说明 | 类型 | 默认值 | 版本 |