From 6c4998621e92372e8b791a0617767c768fde5dab Mon Sep 17 00:00:00 2001 From: haoxin Date: Wed, 17 Feb 2016 16:59:13 +0800 Subject: [PATCH] doc: fix Table onSelectAll params --- components/table/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/table/index.md b/components/table/index.md index 9a70fe3d23..c0c9c28972 100644 --- a/components/table/index.md +++ b/components/table/index.md @@ -100,7 +100,7 @@ const columns = [{ | onChange | 选中项发生变化的时的回调,用户手动点选、换页、更新数据均会触发 | Function(selectedRowKeys) | - | | getCheckboxProps | 选择框的默认属性配置 | Function(record) | - | | onSelect | 用户手动选择/取消选择某列的回调 | Function(record, selected, selectedRows) | - | -| onSelectAll | 用户手动选择/取消选择所有列的回调 | Function(record, selected, selectedRows) | - | +| onSelectAll | 用户手动选择/取消选择所有列的回调 | Function(selected, selectedRows) | - | ## 注意