update table onRow events documentation zh-CN

This commit is contained in:
Max 2018-12-29 11:44:05 +01:00 committed by 偏右
parent 0fc12c9cc5
commit 0f83299d91

View File

@ -94,9 +94,11 @@ const columns = [{
<Table
onRow={(record) => {
return {
onClick: () => {}, // 点击行
onMouseEnter: () => {}, // 鼠标移入行
onXxxx...
onClick: (event) => {}, // 点击行
onDoubleClick: (event) => {},
onContextMenu: (event) => {},
onMouseEnter: (event) => {}, // 鼠标移入行
onMouseLeave: (event) => {}
};
}}
onHeaderRow={(column) => {