From 415afec335659ca6bc206b34bdd3c2fe4635718f Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Thu, 1 Mar 2018 15:19:44 +0100 Subject: KVision site with Jekyll --- .../-field-label/-init-.html | 25 +++++ .../-field-label/get-sn-attrs.html | 18 ++++ .../-field-label/index.html | 104 +++++++++++++++++++++ 3 files changed, 147 insertions(+) create mode 100644 api/pl.treksoft.kvision.form/-field-label/-init-.html create mode 100644 api/pl.treksoft.kvision.form/-field-label/get-sn-attrs.html create mode 100644 api/pl.treksoft.kvision.form/-field-label/index.html (limited to 'api/pl.treksoft.kvision.form/-field-label') diff --git a/api/pl.treksoft.kvision.form/-field-label/-init-.html b/api/pl.treksoft.kvision.form/-field-label/-init-.html new file mode 100644 index 00000000..329b7a8a --- /dev/null +++ b/api/pl.treksoft.kvision.form/-field-label/-init-.html @@ -0,0 +1,25 @@ + + + +FieldLabel.<init> - kvision + + + +kvision / pl.treksoft.kvision.form / FieldLabel / <init>
+
+

<init>

+ +FieldLabel(forId: String, text: String? = null, rich: Boolean = false, classes: Set<String> = setOf("control-label")) +

Parameters

+

+forId - the value of for attribute

+

+text - the text of the label

+

+rich - determines if text can contain HTML code

+

+classes - a set of CSS class names

+

Constructor
+

+ + diff --git a/api/pl.treksoft.kvision.form/-field-label/get-sn-attrs.html b/api/pl.treksoft.kvision.form/-field-label/get-sn-attrs.html new file mode 100644 index 00000000..c34e5d58 --- /dev/null +++ b/api/pl.treksoft.kvision.form/-field-label/get-sn-attrs.html @@ -0,0 +1,18 @@ + + + +FieldLabel.getSnAttrs - kvision + + + +kvision / pl.treksoft.kvision.form / FieldLabel / getSnAttrs
+
+

getSnAttrs

+ +protected open fun getSnAttrs(): List<StringPair> +

Overrides Widget.getSnAttrs

+

Returns list of element attributes in the form of a List.

+

Return
+list of element attributes

+ + diff --git a/api/pl.treksoft.kvision.form/-field-label/index.html b/api/pl.treksoft.kvision.form/-field-label/index.html new file mode 100644 index 00000000..8aba67d7 --- /dev/null +++ b/api/pl.treksoft.kvision.form/-field-label/index.html @@ -0,0 +1,104 @@ + + + +FieldLabel - kvision + + + +kvision / pl.treksoft.kvision.form / FieldLabel
+
+

FieldLabel

+open class FieldLabel : Tag +

Helper class for HTML label element.

+

Constructors

+ + + + + + + +
+

<init>

+
+FieldLabel(forId: String, text: String? = null, rich: Boolean = false, classes: Set<String> = setOf("control-label"))
+

Inherited Properties

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

align

+
+var align: Align? +

Text align.

+
+

rich

+
+var rich: Boolean +

Determines if text can contain HTML code.

+
+

text

+
+var text: String? +

Text content of the tag.

+
+

type

+
+var type: TAG +

Tag type.

+
+

Functions

+ + + + + + + +
+

getSnAttrs

+
+open fun getSnAttrs(): List<StringPair> +

Returns list of element attributes in the form of a List.

+
+

Inherited Functions

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

getSnClass

+
+open fun getSnClass(): List<StringBoolPair> +

Returns list of CSS class names for current widget in the form of a List.

+
+

render

+
+open fun render(): VNode +

Renders current component as a Snabbdom vnode.

+
+ + -- cgit