dateTime

fun Container.dateTime(value: Date? = null, name: String? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false, init: DateTime.() -> Unit? = null): DateTime

DSL builder extension function.

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

fun <S> Container.dateTime(state: ObservableState<S>, value: Date? = null, name: String? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false, init: DateTime.(S) -> Unit): DateTime

DSL builder extension function for observable state.

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