Dialog
open class Dialog<R>( caption: String? = null, closeButton: Boolean = true, size: <Error class: unknown class>? = null, animation: Boolean = true, centered: Boolean = false, scrollable: Boolean = false, escape: Boolean = true, className: String? = null, init: Dialog<R>.() -> Unit? = null)
Content copied to clipboard
Modal window with a result.
Parameters
caption
window title
close Button
determines if Close button is visible
size
modal window size
animation
determines if animations are used
centered
determines if modal dialog is vertically centered
scrollable
determines if modal dialog content is scrollable
escape
determines if dialog can be closed with Esc key
class Name
CSS class names
init
an initializer extension function
Constructors
Link copied to clipboard
fun <R> Dialog( caption: String? = null, closeButton: Boolean = true, size: <Error class: unknown class>? = null, animation: Boolean = true, centered: Boolean = false, scrollable: Boolean = false, escape: Boolean = true, className: String? = null, init: Dialog<R>.() -> Unit? = null)
Content copied to clipboard