Locale Decimal Parsing Matrix

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.

Green: Value is <= 0.2
Red: Value is greater than 0.2
Amber: Value is between 1.0 and 1.5
Blue: Delta is below 0

HTML Store - Dot Decimals

Cell text comes from the DOM using dot decimals.

Item Value Delta
Pass threshold0.17-0.03
Fail threshold0.250.05
Between1.250.10
Exact list3.14-1.00
Thousands1500.000.00

HTML Store - Comma Decimals

Cell text comes from the DOM using comma decimals and a grouped value.

Item Value Delta
Pass threshold0,17-0,03
Fail threshold0,250,05
Between1,250,10
Exact list3,14-1,00
Thousands1 500,000,00

JavaScript Store - Raw Numbers

Underlying data stays numeric objects, not formatted strings.

JavaScript Store - Comma Strings

Underlying data is string-based and still uses comma decimals.