Open Aleksey2093 opened 1 year ago
With fast character input, BigDecimal Field can get a value beyond the set max and min values.
BigDecimalField f = new BigDecimalField(); inputMask = new InputMask("Number", true, InputMaskOption.option("scale", 2), InputMaskOption.option("radix", ','), InputMaskOption.option("min", "-999.99", true), InputMaskOption.option("max", "999.99", true) ); inputMask.extend(f.get());
With fast character input, BigDecimal Field can get a value beyond the set max and min values.