mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
update table onRow events documentation zh-CN
This commit is contained in:
parent
0fc12c9cc5
commit
0f83299d91
@ -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) => {
|
||||
|
Loading…
Reference in New Issue
Block a user