2016-11-21 11:29:55 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2021-03-02 14:52:11 +08:00
|
|
|
带单元格编辑功能的表格。当配合 `shouldCellUpdate` 使用时请注意[闭包问题](https://github.com/ant-design/ant-design/issues/29243)。
|
2016-11-21 11:29:55 +08:00
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
2021-03-02 14:52:11 +08:00
|
|
|
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 {
|
2021-01-30 19:39:02 +08:00
|
|
|
padding: 4px 11px;
|
2018-07-10 21:10:48 +08:00
|
|
|
border: 1px solid #d9d9d9;
|
2021-06-30 11:15:12 +08:00
|
|
|
border-radius: 2px;
|
2016-11-21 11:29:55 +08:00
|
|
|
}
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|