From a8ff23c5e58394c21e2e7c2a4880302b43b60dfd Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Thu, 16 May 2019 15:06:28 +0200 Subject: API documentation for KVision 0.0.36 --- api/pl.treksoft.kvision.tabulator/-tabulator/create.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (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 index 916db7fc..e506a331 100644 --- a/api/pl.treksoft.kvision.tabulator/-tabulator/create.html +++ b/api/pl.treksoft.kvision.tabulator/-tabulator/create.html @@ -8,14 +8,14 @@ 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> + +inline fun <reified T : Any> create(data: List<T>? = null, dataUpdateOnEdit: Boolean = true, options: TabulatorOptions<T> = TabulatorOptions(), 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> + +inline fun <reified T : Any, S : Any, A> create(store: ReduxStore<S, A>, noinline dataFactory: (S) -> List<T>, options: TabulatorOptions<T> = TabulatorOptions(), 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> + +inline fun <reified T : Any, A> create(store: ReduxStore<List<T>, A>, options: TabulatorOptions<T> = TabulatorOptions(), 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