Kanban ยท console.warn
an inline edit to "{field}" did not persist through the bound grid (a read-only, non-editable, permission-blocked or unresolvable column).
Printed by Kanban, prefixed [lattice], since 1.35.0.
Warnings reference › kanban:writeback-noop
- Identifier
kanban:writeback-noop- Raised by
- Kanban
- Since
- 1.35.0
What happened
A card edit - or a card move, which writes the grouping property - was written to the bound grid and the grid wrote no cells at all. The board re-reads the grid, so the card visibly stays where it was, and a move additionally fires card:reverted rather than a phantom card:move. The column is read-only, not editable, blocked by permissions, or not resolvable from the property path at all.
The fix
Check that the column behind the property is editable and permitted for this user, and that the property path resolves to a real column id. A board over a read-only grid should be given readonly so the interaction is refused before the write is attempted.
The smallest fix
columns: [{ id: 'status', edit: { enabled: true } }]
Reference
Covered in full at the API reference.