From 8883419bfcec00947863741d48dbd89cc877615a Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Thu, 4 Apr 2019 13:10:28 +0200 Subject: API documentation for KVision 0.0.32 --- .../-upload-input/index.html | 94 ++++++++++++++++++++++ 1 file changed, 94 insertions(+) (limited to 'api/pl.treksoft.kvision.form.upload/-upload-input') diff --git a/api/pl.treksoft.kvision.form.upload/-upload-input/index.html b/api/pl.treksoft.kvision.form.upload/-upload-input/index.html index 62a7296f..52879f01 100644 --- a/api/pl.treksoft.kvision.form.upload/-upload-input/index.html +++ b/api/pl.treksoft.kvision.form.upload/-upload-input/index.html @@ -254,6 +254,13 @@ If not set the upload button action will default to form submission.

+

popoverOptions

+ + +var popoverOptions: PopoverOptions? + + +

role

@@ -279,6 +286,13 @@ If not set the upload button action will default to form submission.

+

tooltipOptions

+ + +var tooltipOptions: TooltipOptions? + + +

visible

@@ -438,6 +452,8 @@ If not set the upload button action will default to form submission.

open fun addCssClass(css: String): Widget

Adds given value to the set of CSS classes generated in html code of current component.

+open fun addCssClass(css: Style): Widget +

Adds given style object to the set of CSS classes generated in html code of current component.

@@ -447,6 +463,8 @@ If not set the upload button action will default to form submission.

open fun addSurroundingCssClass(css: String): Widget

Adds given value to the set of CSS classes generated in html code of parent component.

+open fun addSurroundingCssClass(css: Style): Widget +

Adds given style object to the set of CSS classes generated in html code of parent component.

@@ -478,6 +496,24 @@ If not set the upload button action will default to form submission.

+

disablePopover

+ + +open fun disablePopover(): Widget +

Disables popover for the current widget.

+ + + + +

disableTooltip

+ + +open fun disableTooltip(): Widget +

Disables tooltip for the current widget.

+ + + +

dispatchEvent

@@ -485,6 +521,24 @@ If not set the upload button action will default to form submission.

+

enablePopover

+ + +open fun enablePopover(options: PopoverOptions = PopoverOptions()): Widget +

Enables popover for the current widget.

+ + + + +

enableTooltip

+ + +open fun enableTooltip(options: TooltipOptions = TooltipOptions()): Widget +

Enables tooltip for the current widget.

+ + + +

getElement

@@ -539,11 +593,31 @@ If not set the upload button action will default to form submission.

+

hidePopover

+ + +open fun hidePopover(): Widget +

Hides popover for the current widget.

+ + + + +

hideTooltip

+ + +open fun hideTooltip(): Widget +

Hides tooltip for the current widget.

+ + + +

removeCssClass

open fun removeCssClass(css: String): Widget

Removes given value from the set of CSS classes generated in html code of current component.

+open fun removeCssClass(css: Style): Widget +

Removes given style object from the set of CSS classes generated in html code of current component.

@@ -562,6 +636,8 @@ If not set the upload button action will default to form submission.

open fun removeSurroundingCssClass(css: String): Widget

Removes given value from the set of CSS classes generated in html code of parent component.

+open fun removeSurroundingCssClass(css: Style): Widget +

Removes given style object from the set of CSS classes generated in html code of parent component.

@@ -633,6 +709,24 @@ If not set the upload button action will default to form submission.

+

showPopover

+ + +open fun showPopover(): Widget +

Shows popover for the current widget.

+ + + + +

showTooltip

+ + +open fun showTooltip(): Widget +

Shows tooltip for the current widget.

+ + + +

singleRender

-- cgit