The grid (core) ยท console.warn
column '{id}' names the editor '{editor}' but does not enable editing, so it stays read-only. Add `enabled: true`, or use `edit: true` and set `editor` alongside it.
Printed by The grid (core), prefixed [lattice], since 1.4.0.
Warnings reference › column.editor-not-enabled:*
- Identifier
column.editor-not-enabled:*- Raised by
- The grid (core)
- Since
- 1.4.0
What happened
Naming an editor does not make a column editable: editing is opt-in and stays so, because inferring it from an editor name would turn one line of columnDefaults into "every column is editable". The editor is accepted and does nothing, and the column stays read-only - which looks exactly like a broken editor.
The fix
Add enabled: true to the column's edit block.
The smallest fix
columns: [{ id: 'status', edit: { enabled: true, editor: 'select' } }]
Reference
Covered in full at the API reference.