We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 855389d commit cc2f4cbCopy full SHA for cc2f4cb
examples/grid/nestedRecordFields/ViewportController.mjs
@@ -1,7 +1,5 @@
1
import Component from '../../../src/controller/Component.mjs';
2
3
-const dataSymbol = Symbol.for('data');
4
-
5
/**
6
* @class Neo.examples.grid.nestedRecordFields.ViewportController
7
* @extends Neo.controller.Component
@@ -63,7 +61,7 @@ class ViewportController extends Component {
63
61
country = record.country;
64
62
65
// hack resetting the current value to get a new record change
66
- record[dataSymbol].country = null;
+ record.toJSON().country = null;
67
68
record.country = country
69
})
0 commit comments