diff --git a/components/table/index.en-US.md b/components/table/index.en-US.md index 8a9c0e8a93..588ec78266 100644 --- a/components/table/index.en-US.md +++ b/components/table/index.en-US.md @@ -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` | -
`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 @@ -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 }; diff --git a/components/table/index.zh-CN.md b/components/table/index.zh-CN.md index 2cf605c61f..ef46e6efd3 100644 --- a/components/table/index.zh-CN.md +++ b/components/table/index.zh-CN.md @@ -90,7 +90,7 @@ const columns = [ | tableLayout | 表格元素的 [table-layout](https://developer.mozilla.org/zh-CN/docs/Web/CSS/table-layout) 属性,设为 `fixed` 表示内容不会影响列的布局 | - \| `auto` \| `fixed` | 无
固定表头/列或使用了 `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 用法 @@ -108,7 +108,7 @@ const columns = [ onMouseLeave: event => {}, }; }} - onHeaderRow={column => { + onHeaderRow={(columns, index) => { return { onClick: () => {}, // 点击表头行 };