Reputation: 3
I am trying to put an editable grid within a grid row in ExtJs 7 using the modern toolkit, but am unable to update the subgrid cell values. The original values are shown after the cell loses focus.
I have created a Fiddle of the scenario in abstract. See app/view/main/Main.js line 41 for the problem point:
columns: [
{text: 'Foot', dataIndex: 'foot'},
// Edits are not shown after cell loses focus
{text: 'Condition', dataIndex: 'condition', editor: true},
],
Upvotes: 0
Views: 113