Skip to content

Commit

Permalink
docs: fix onHeaderRow documentation (ant-design#29103)
Browse files Browse the repository at this point in the history
  • Loading branch information
chillyistkult authored Jan 29, 2021
1 parent 11103bc commit 45f4f46
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/table/index.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const columns = [
| tableLayout | The [table-layout](https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout) attribute of table element | - \| `auto` \| `fixed` | -<hr />`fixed` when header/columns are fixed, or using `column.ellipsis` | |
| title | Table title renderer | function(currentPageData) | - | |
| onChange | Callback executed when pagination, filters or sorter is changed | function(pagination, filters, sorter, extra: { currentDataSource: \[], action: `paginate` \| `sort` \| `filter` }) | - | |
| onHeaderRow | Set props on per header row | function(column, index) | - | |
| onHeaderRow | Set props on per header row | function(columns, index) | - | |
| onRow | Set props on per row | function(record, index) | - | |

#### onRow usage
Expand All @@ -101,7 +101,7 @@ Same as `onRow` `onHeaderRow` `onCell` `onHeaderCell`
onMouseLeave: event => {}, // mouse leave row
};
}}
onHeaderRow={column => {
onHeaderRow={(columns, index) => {
return {
onClick: () => {}, // click header row
};
Expand Down
4 changes: 2 additions & 2 deletions components/table/index.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const columns = [
| tableLayout | 表格元素的 [table-layout](https://developer.mozilla.org/zh-CN/docs/Web/CSS/table-layout) 属性,设为 `fixed` 表示内容不会影响列的布局 | - \| `auto` \| `fixed` | 无<hr />固定表头/列或使用了 `column.ellipsis` 时,默认值为 `fixed` | |
| title | 表格标题 | function(currentPageData) | - | |
| onChange | 分页、排序、筛选变化时触发 | function(pagination, filters, sorter, extra: { currentDataSource: \[], action: `paginate` \| `sort` \| `filter` }) | - | |
| onHeaderRow | 设置头部行属性 | function(column, index) | - | |
| onHeaderRow | 设置头部行属性 | function(columns, index) | - | |
| onRow | 设置行属性 | function(record, index) | - | |

#### onRow 用法
Expand All @@ -108,7 +108,7 @@ const columns = [
onMouseLeave: event => {},
};
}}
onHeaderRow={column => {
onHeaderRow={(columns, index) => {
return {
onClick: () => {}, // 点击表头行
};
Expand Down

0 comments on commit 45f4f46

Please sign in to comment.