Number field
Decimal numbers with up to 4 decimal places (DECIMAL(20,4)).
Configuration
| Setting | Default | Notes |
|---|---|---|
| Required | no | |
| Default value | (none) | |
| Min value | -∞ | |
| Max value | +∞ | |
| Decimals | 2 | Display precision; storage is always 4 |
| Step | 0.01 | Form input granularity |
| Unit prefix | (none) | e.g. "$" |
| Unit suffix | (none) | e.g. "kg", "EUR", "%" |
| Format | (default locale) | thousands separator |
| Indexed | no |
Form rendering
<input type="number"> with the configured step. The unit prefix/suffix renders as adornments outside the input. Decimal separator is locale-aware (en uses ., es/de/fr use ,).
List rendering
Right-aligned. Formatted with the locale separator and the unit prefix/suffix. NULL values show as —.
EQL operators supported
:, !=, >=, <=, >, <, in [...], is null, is not null.