The grid (rendering) ยท console.warn
a card template binds {fields} on a protected column; the masked text is shown instead. Use {{cell.<column>}} to show what the grid shows.
Printed by The grid (rendering), prefixed [lattice], since 1.19.0.
Warnings reference › rowTemplate.protected
- Identifier
rowTemplate.protected- Raised by
- The grid (rendering)
- Since
- 1.19.0
What happened
A card template reaches a redacted or permission-protected column through data.<field>, which is the raw row value rather than the value the grid would show. The grid substitutes the masked text, so the secret is not leaked, and names the bindings so the template can be corrected rather than quietly rendering a mask you did not expect.
The fix
Bind {{cell.<column>}}, which is what the grid itself renders and already honours redaction and permissions.
Reference
Covered in full at the API reference.