diff --git a/components/table/index.en-US.md b/components/table/index.en-US.md index 6d54a6a30..15cc69313 100644 --- a/components/table/index.en-US.md +++ b/components/table/index.en-US.md @@ -71,7 +71,7 @@ const columns = [ | Events Name | Description | Arguments | | --- | --- | --- | -| change | Callback executed when pagination, filters or sorter is changed | Function(pagination, filters, sorter) | | +| change | Callback executed when pagination, filters or sorter is changed | Function(pagination, filters, sorter, { currentDataSource }) | | | expand | Callback executed when the row expand icon is clicked | Function(expanded, record) | | | expandedRowsChange | Callback executed when the expanded rows change | Function(expandedRows) | | diff --git a/components/table/index.zh-CN.md b/components/table/index.zh-CN.md index 8c8dafc71..e2a5bbbc8 100644 --- a/components/table/index.zh-CN.md +++ b/components/table/index.zh-CN.md @@ -72,7 +72,7 @@ const columns = [ | 事件名称 | 说明 | 回调参数 | | ------------------ | -------------------------- | ------------------------------------- | | expandedRowsChange | 展开的行变化时触发 | Function(expandedRows) | -| change | 分页、排序、筛选变化时触发 | Function(pagination, filters, sorter) | +| change | 分页、排序、筛选变化时触发 | Function(pagination, filters, sorter, { currentDataSource }) | | expand | 点击展开图标时触发 | Function(expanded, record) | #### customRow 用法