From 8449ff519f3d853ca82c792dccf12d06fb09b627 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Wed, 24 Apr 2019 23:12:48 +0200 Subject: API documentation for KVision 0.0.35 --- .../-tabulator/tabulator.html | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 api/pl.treksoft.kvision.tabulator/-tabulator/tabulator.html (limited to 'api/pl.treksoft.kvision.tabulator/-tabulator/tabulator.html') diff --git a/api/pl.treksoft.kvision.tabulator/-tabulator/tabulator.html b/api/pl.treksoft.kvision.tabulator/-tabulator/tabulator.html new file mode 100644 index 00000000..c875ebbf --- /dev/null +++ b/api/pl.treksoft.kvision.tabulator/-tabulator/tabulator.html @@ -0,0 +1,25 @@ + + + +Tabulator.tabulator - kvision + + + +kvision / pl.treksoft.kvision.tabulator / Tabulator / tabulator
+
+

tabulator

+ +inline fun <reified T : Any> Container.tabulator(data: List<T>? = null, options: Options = Options(), types: Set<TableType> = setOf(), classes: Set<String> = setOf(), noinline init: (Tabulator<T>.() -> Unit)? = null): Tabulator<T> +

DSL builder extension function.

+

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

+ +inline fun <reified T : Any, S : Any, A> Container.tabulator(store: ReduxStore<S, A>, noinline dataFactory: (S) -> List<T>, options: Options = Options(), types: Set<TableType> = setOf(), classes: Set<String> = setOf(), noinline init: (Tabulator<T>.() -> Unit)? = null): Tabulator<T> +

DSL builder extension function for general redux store.

+ +inline fun <reified T : Any, A> Container.tabulator(store: ReduxStore<List<T>, A>, options: Options = Options(), types: Set<TableType> = setOf(), classes: Set<String> = setOf(), noinline init: (Tabulator<T>.() -> Unit)? = null): Tabulator<T> +

DSL builder extension function for dedicated redux store (backed with a list).

+ +fun <T : Any> Container.tabulator(options: Options = Options(), types: Set<TableType> = setOf(), classes: Set<String> = setOf(), init: (Tabulator<T>.() -> Unit)? = null): Tabulator<T> +

DSL builder extension function for dynamic data (send within options parameter).

+ + -- cgit