ImaskNumericInput

constructor(value: Number? = null, min: Number? = null, max: Number? = null, decimals: Int = 2, decimalSeparator: Char = I18n.detectDecimalSeparator(), thousandsSeparator: Char? = I18n.detectThousandsSeparator(), padFractionalZeros: Boolean = false, normalizeZeros: Boolean = true, className: String? = null, init: ImaskNumericInput.() -> Unit? = null)

Parameters

value

numeric input value

min

minimal value

max

maximal value

decimals

the number of decimal digits (default 2)

decimalSeparator

the decimal separator (default: auto detect)

thousandsSeparator

the thousands separator (default: auto detect)

padFractionalZeros

pads fractional zeros at end to the length of scale

normalizeZeros

appends or removes zeros at the end

className

CSS class names

init

an initializer extension function