我正在尝试使用现代的工具包在ExtJs7的网格行中放置一个可编辑的网格,但无法更新子网格单元格值。原始值在单元格失去焦点后显示。
我已经在抽象中创建了该场景的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},
],发布于 2020-02-12 17:16:20
我稍微调整了一下配置,一切都正常了。不需要expandedField,您没有使用rowexpander。您还忘记了用于嵌套grid的editor插件
https://stackoverflow.com/questions/60179901
复制相似问题