mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
docs: fix onHeaderRow documentation (#29103)
This commit is contained in:
parent
11103bc7cf
commit
45f4f46483
@ -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` | |
|
| 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) | - | |
|
| 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` }) | - | |
|
| 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 | Set props on per row | function(record, index) | - | |
|
||||||
|
|
||||||
#### onRow usage
|
#### onRow usage
|
||||||
@ -101,7 +101,7 @@ Same as `onRow` `onHeaderRow` `onCell` `onHeaderCell`
|
|||||||
onMouseLeave: event => {}, // mouse leave row
|
onMouseLeave: event => {}, // mouse leave row
|
||||||
};
|
};
|
||||||
}}
|
}}
|
||||||
onHeaderRow={column => {
|
onHeaderRow={(columns, index) => {
|
||||||
return {
|
return {
|
||||||
onClick: () => {}, // click header row
|
onClick: () => {}, // click header row
|
||||||
};
|
};
|
||||||
|
@ -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` | |
|
| tableLayout | 表格元素的 [table-layout](https://developer.mozilla.org/zh-CN/docs/Web/CSS/table-layout) 属性,设为 `fixed` 表示内容不会影响列的布局 | - \| `auto` \| `fixed` | 无<hr />固定表头/列或使用了 `column.ellipsis` 时,默认值为 `fixed` | |
|
||||||
| title | 表格标题 | function(currentPageData) | - | |
|
| title | 表格标题 | function(currentPageData) | - | |
|
||||||
| onChange | 分页、排序、筛选变化时触发 | function(pagination, filters, sorter, extra: { currentDataSource: \[], action: `paginate` \| `sort` \| `filter` }) | - | |
|
| onChange | 分页、排序、筛选变化时触发 | function(pagination, filters, sorter, extra: { currentDataSource: \[], action: `paginate` \| `sort` \| `filter` }) | - | |
|
||||||
| onHeaderRow | 设置头部行属性 | function(column, index) | - | |
|
| onHeaderRow | 设置头部行属性 | function(columns, index) | - | |
|
||||||
| onRow | 设置行属性 | function(record, index) | - | |
|
| onRow | 设置行属性 | function(record, index) | - | |
|
||||||
|
|
||||||
#### onRow 用法
|
#### onRow 用法
|
||||||
@ -108,7 +108,7 @@ const columns = [
|
|||||||
onMouseLeave: event => {},
|
onMouseLeave: event => {},
|
||||||
};
|
};
|
||||||
}}
|
}}
|
||||||
onHeaderRow={column => {
|
onHeaderRow={(columns, index) => {
|
||||||
return {
|
return {
|
||||||
onClick: () => {}, // 点击表头行
|
onClick: () => {}, // 点击表头行
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user