From a817e908e6df82b9b6d69758635c852c7a5f628e Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 20 Jan 2020 15:32:35 +0100 Subject: API documentation for KVision 2.9.0 --- api/pl.treksoft.kvision.data/data-container.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'api/pl.treksoft.kvision.data/data-container.html') diff --git a/api/pl.treksoft.kvision.data/data-container.html b/api/pl.treksoft.kvision.data/data-container.html index d1a69659..b74f0bd7 100644 --- a/api/pl.treksoft.kvision.data/data-container.html +++ b/api/pl.treksoft.kvision.data/data-container.html @@ -8,12 +8,12 @@ kvision / pl.treksoft.kvision.data / dataContainer

dataContainer

- -fun <M, C : Component, CONT : Container> Container.dataContainer(model: MutableList<M>, factory: (M, Int, MutableList<M>) -> C, container: CONT, containerAdd: (CONT.(C, M) -> Unit)? = null, filter: ((M) -> Boolean)? = null, sorter: ((M) -> Comparable<*>?)? = null, sorterType: () -> SorterType = { SorterType.ASC }, init: (DataContainer<M, C, CONT>.() -> Unit)? = null): DataContainer<M, C, CONT> + +fun <M, C : Component, CONT : Container> Container.dataContainer(model: MutableList<M>, factory: Container.(M, Int, MutableList<M>) -> C, container: CONT, containerAdd: (CONT.(C, M) -> Unit)? = null, filter: ((M) -> Boolean)? = null, sorter: ((M) -> Comparable<*>?)? = null, sorterType: () -> SorterType = { SorterType.ASC }, init: (DataContainer<M, C, CONT>.() -> Unit)? = null): DataContainer<M, C, CONT>

DSL builder extension function.

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

- -fun <M, C : Component> Container.dataContainer(model: MutableList<M>, factory: (M, Int, MutableList<M>) -> C, containerAdd: (VPanel.(C, M) -> Unit)? = null, filter: ((M) -> Boolean)? = null, sorter: ((M) -> Comparable<*>?)? = null, sorterType: () -> SorterType = { SorterType.ASC }, init: (DataContainer<M, C, VPanel>.() -> Unit)? = null): DataContainer<M, C, VPanel> + +fun <M, C : Component> Container.dataContainer(model: MutableList<M>, factory: Container.(M, Int, MutableList<M>) -> C, containerAdd: (VPanel.(C, M) -> Unit)? = null, filter: ((M) -> Boolean)? = null, sorter: ((M) -> Comparable<*>?)? = null, sorterType: () -> SorterType = { SorterType.ASC }, init: (DataContainer<M, C, VPanel>.() -> Unit)? = null): DataContainer<M, C, VPanel>

DSL builder extension function with VPanel default.

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

-- cgit