ExtJS 7:无法编辑子网格中的单元格值,即网格行中的网格
ExtJS 7: Unable to edit cell value that is in a subgrid, i.e., a grid within a grid row
我正在尝试使用现代工具包在 ExtJs 7 的网格行中放置一个可编辑网格,但我无法更新子网格单元格值。单元格失去焦点后显示原始值。
我已经抽象地创建了场景的 Fiddle。问题点见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},
],
我稍微调整了配置,一切正常。不需要 expandedField
,您没有使用 rowexpander
。你忘记了嵌套 grid
的 editor
插件
我正在尝试使用现代工具包在 ExtJs 7 的网格行中放置一个可编辑网格,但我无法更新子网格单元格值。单元格失去焦点后显示原始值。
我已经抽象地创建了场景的 Fiddle。问题点见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},
],
我稍微调整了配置,一切正常。不需要 expandedField
,您没有使用 rowexpander
。你忘记了嵌套 grid
editor
插件