我正在尝试使用现代工具包在 ExtJs 7 中的网格行中放置一个可编辑的网格,但无法更新子网格单元格值。单元格失去焦点后显示原始值。
我已经抽象地创建了一个场景的小提琴。问题点见 app/view/main/Main.js 第 41 行:
columns: [
{text: 'Foot', dataIndex: 'foot'},
// Edits are not shown after cell loses focus
{text: 'Condition', dataIndex: 'condition', editor: true},
],