表格设置了表头分组后 使用可编辑行无效
示例代码
你需要通过 onCell 方法修改 children 中 cloumn 的属性。
onCell
children
cloumn
const columns = this.columns.map(col => { if (!col.editable) { return col; } if (col.children) { return { ...col, children: [ { ...col.children[0], onCell: record => { return { record, inputType: "text", dataIndex: col.children[0].dataIndex, title: col.children[0].title, editing: this.isEditing(record) }; } }, { ...col.children[1], onCell: record => { return { record, inputType: "text", dataIndex: col.children[0].dataIndex, title: col.children[0].title, editing: this.isEditing(record) }; } } ] }; } else { return { ...col, onCell: record => { return { record, inputType: col.dataIndex === "age" ? "number" : "text", dataIndex: col.dataIndex, title: col.title, editing: this.isEditing(record) }; } }; } });
点击查看示例
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
你需要通过
onCell
方法修改children
中cloumn
的属性。点击查看示例