This example checks the same numeric rules across all four combinations people usually ask about: HTML-backed tables vs JavaScript-backed tables, and dot decimals vs comma decimals.
The first row is the important regression check: 0.17 or 0,17 should pass
Value <= 0.2 and stay green in every table. If it turns red, parsing is wrong somewhere.
<= 0.20.21.0 and 1.50Cell text comes from the DOM using dot decimals.
| Item | Value | Delta |
|---|---|---|
| Pass threshold | 0.17 | -0.03 |
| Fail threshold | 0.25 | 0.05 |
| Between | 1.25 | 0.10 |
| Exact list | 3.14 | -1.00 |
| Thousands | 1500.00 | 0.00 |
Cell text comes from the DOM using comma decimals and a grouped value.
| Item | Value | Delta |
|---|---|---|
| Pass threshold | 0,17 | -0,03 |
| Fail threshold | 0,25 | 0,05 |
| Between | 1,25 | 0,10 |
| Exact list | 3,14 | -1,00 |
| Thousands | 1 500,00 | 0,00 |
Underlying data stays numeric objects, not formatted strings.
Underlying data is string-based and still uses comma decimals.