From 7c2850063697f94a0d8b8d8f8588136dd4b3d05e Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sun, 21 Oct 2018 23:59:34 +0200 Subject: API documentation for KVision 0.0.19 --- api/pl.treksoft.kvision.core/-container/index.html | 187 --------------------- 1 file changed, 187 deletions(-) delete mode 100644 api/pl.treksoft.kvision.core/-container/index.html (limited to 'api/pl.treksoft.kvision.core/-container/index.html') diff --git a/api/pl.treksoft.kvision.core/-container/index.html b/api/pl.treksoft.kvision.core/-container/index.html deleted file mode 100644 index e3831282..00000000 --- a/api/pl.treksoft.kvision.core/-container/index.html +++ /dev/null @@ -1,187 +0,0 @@ - - - -Container - kvision - - - -kvision / pl.treksoft.kvision.core / Container
-
-

Container

-interface Container : Component -

Base interface for all containers.

-

Inherited Properties

- - - - - - - - - - - -
-

parent

-
-abstract var parent: Container? -

Parent of the current component.

-
-

visible

-
-abstract var visible: Boolean -

Visibility state of the current component.

-
-

Functions

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
-

add

-
-abstract fun add(child: Component): Container -

Adds given component to the current container.

-
-

addAll

-
-abstract fun addAll(children: List<Component>): Container -

Adds a list of components to the current container.

-
-

getChildren

-
-abstract fun getChildren(): List<Component> -

Returns a list of children of the current container.

-
-

invoke

-
-open operator fun invoke(vararg children: Component): Container -

Operator function for adding children in a DSL style.

-
-

remove

-
-abstract fun remove(child: Component): Container -

Removes given component from the current container.

-
-

removeAll

-
-abstract fun removeAll(): Container -

Removes all children from the current container.

-
-

Inherited Functions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-

addCssClass

-
-abstract fun addCssClass(css: String): Component -

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

-
-

addSurroundingCssClass

-
-abstract fun addSurroundingCssClass(css: String): Component -

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

-
-

getElement

-
-abstract fun getElement(): Node? -

Returns DOM element bound to the current component.

-
-

getElementJQuery

-
-abstract fun getElementJQuery(): JQuery? -

Returns JQuery element bound to the current component.

-
-

getElementJQueryD

-
-abstract fun getElementJQueryD(): dynamic -

Returns JQuery element bound to the current component as a dynamic type.

-
-

removeCssClass

-
-abstract fun removeCssClass(css: String): Component -

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

-
-

removeSurroundingCssClass

-
-abstract fun removeSurroundingCssClass(css: String): Component -

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

-
-

Inheritors

- - - - - - - - - - - -
-

DataContainer

-
-class DataContainer<M, C : Component> : Widget, Container, DataUpdatable -

A container class with support for observable data model.

-
-

SimplePanel

-
-open class SimplePanel : Widget, Container -

Basic container class, rendered as a DIV element with all children directly within.

-
- - -- cgit