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/create.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 api/pl.treksoft.kvision.tabulator/-tabulator/create.html (limited to 'api/pl.treksoft.kvision.tabulator/-tabulator/create.html') diff --git a/api/pl.treksoft.kvision.tabulator/-tabulator/create.html b/api/pl.treksoft.kvision.tabulator/-tabulator/create.html new file mode 100644 index 00000000..916db7fc --- /dev/null +++ b/api/pl.treksoft.kvision.tabulator/-tabulator/create.html @@ -0,0 +1,21 @@ + + + +Tabulator.create - kvision + + + +kvision / pl.treksoft.kvision.tabulator / Tabulator / create
+
+

create

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

A helper function to create a Tabulator object with correct serializer.

+ +inline fun <reified T : Any, S : Any, A> create(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> +

A helper function to create a Tabulator object with correct serializer and general redux store.

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

A helper function to create a Tabulator object with correct serializer and dedicated redux store.

+ + -- cgit