The grid (core) · console.warn
column "{colId}" has no `field` and no `value.apply`, so an edit cannot be written back.
Printed by The grid (core), prefixed [lattice], since 1.0.1.
Warnings reference › apply:*
- Identifier
apply:*- Raised by
- The grid (core)
- Since
- 1.0.1
What happened
An edit was committed on a column that has nowhere to put the new value: it is not backed by a row field, and it defines no value.apply to write one. The edit is refused and the cell keeps its old value.
The fix
Give the column a field, or a value.apply that writes the edit into the row.
The smallest fix
columns: [{ id: 'full', value: { get: (p) => …, apply: ({ value, data }) => { data.first = value.split(' ')[0]; } } }]
Reference
Covered in full at the API reference.