Lattice Grid Buy a licence

The grid (core) ยท console.warn

unsupported radix {value}; use 2, 8, 16, 'binary', 'octal' or 'hex'. Falling back to hex

Printed by The grid (core), prefixed [lattice], since 1.0.1.

Warnings referenceradix:base:*

Identifier
radix:base:*
Raised by
The grid (core)
Since
1.0.1

What happened

A radix-formatted column was given a base it does not support. Only the three bases have digit groupings and prefixes defined, so the column renders in hexadecimal instead of the base you asked for.

The fix

Use 2, 8 or 16, or the names 'binary', 'octal', 'hex'.

The smallest fix

columns: [{ id: 'flags', type: 'radix', radix: { radix: 2, bitWidth: 16 } }]

Reference

Covered in full at the API reference.