ant-design/components/table/demo/edit-cell.md

25 lines
572 B
Markdown
Raw Normal View History

2016-11-21 11:29:55 +08:00
## zh-CN
带单元格编辑功能的表格。当配合 `shouldCellUpdate` 使用时请注意[闭包问题](https://github.com/ant-design/ant-design/issues/29243)。
2016-11-21 11:29:55 +08:00
## en-US
Table with editable cells. When work with `shouldCellUpdate`, please take care of [closure](https://github.com/ant-design/ant-design/issues/29243).
2016-11-21 11:29:55 +08:00
2019-05-07 14:57:32 +08:00
```css
2016-11-21 11:29:55 +08:00
.editable-cell {
position: relative;
}
2018-07-10 21:10:48 +08:00
.editable-cell-value-wrap {
padding: 5px 12px;
2016-11-21 11:29:55 +08:00
cursor: pointer;
}
2018-07-10 21:10:48 +08:00
.editable-row:hover .editable-cell-value-wrap {
padding: 4px 11px;
2018-07-10 21:10:48 +08:00
border: 1px solid #d9d9d9;
border-radius: 2px;
2016-11-21 11:29:55 +08:00
}
2019-05-07 14:57:32 +08:00
```