From 6ce402754e01940fc641f8814eae03599a622b1c Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sun, 9 Feb 2020 14:23:52 +0100 Subject: API documentation for KVision 2.10.0 --- api/pl.treksoft.kvision.form.range/index.html | 58 +++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 api/pl.treksoft.kvision.form.range/index.html (limited to 'api/pl.treksoft.kvision.form.range/index.html') diff --git a/api/pl.treksoft.kvision.form.range/index.html b/api/pl.treksoft.kvision.form.range/index.html new file mode 100644 index 00000000..fb7f1154 --- /dev/null +++ b/api/pl.treksoft.kvision.form.range/index.html @@ -0,0 +1,58 @@ + + + +pl.treksoft.kvision.form.range - kvision + + + +kvision / pl.treksoft.kvision.form.range
+
+

Package pl.treksoft.kvision.form.range

+

Types

+ + + + + + + + + + + +
+

Range

+
+open class Range : SimplePanel, NumberFormControl +

The form field component for range input control.

+
+

RangeInput

+
+open class RangeInput : Widget, FormInput +

Range input component.

+
+

Functions

+ + + + + + + + + + + +
+

range

+
+fun Container.range(value: Number? = null, name: String? = null, min: Number = 0, max: Number = 100, step: Number = DEFAULT_STEP, label: String? = null, rich: Boolean = false, init: (Range.() -> Unit)? = null): Range +

DSL builder extension function.

+
+

rangeInput

+
+fun Container.rangeInput(value: Number? = null, min: Number = 0, max: Number = 100, step: Number = DEFAULT_STEP, classes: Set<String> = setOf(), init: (RangeInput.() -> Unit)? = null): RangeInput +

DSL builder extension function.

+
+ + -- cgit