spinnerInput

fun Container.spinnerInput(value: Number? = null, min: Number? = null, max: Number? = null, step: Number = DEFAULT_STEP, decimals: Int = 0, buttonsType: ButtonsType = ButtonsType.VERTICAL, forceType: ForceType = ForceType.NONE, buttonStyle: ButtonStyle? = null, decimalSeparator: String? = I18n.detectDecimalSeparator(), classes: Set<String>? = null, className: String? = null, init: SpinnerInput.() -> Unit? = null): SpinnerInput

DSL builder extension function.

It takes the same parameters as the constructor of the built component.

fun <S> Container.spinnerInput(state: ObservableState<S>, value: Number? = null, min: Number? = null, max: Number? = null, step: Number = DEFAULT_STEP, decimals: Int = 0, buttonsType: ButtonsType = ButtonsType.VERTICAL, forceType: ForceType = ForceType.NONE, buttonStyle: ButtonStyle? = null, decimalSeparator: String? = I18n.detectDecimalSeparator(), classes: Set<String>? = null, className: String? = null, init: SpinnerInput.(S) -> Unit): SpinnerInput

DSL builder extension function for observable state.

It takes the same parameters as the constructor of the built component.