Package io. kvision. modal
Classes supporting general purpose Bootstrap modals with convenient helpers for alert and confirm popup dialogs.
Types
Link copied to clipboard
open class Alert( caption: String? = null, text: String? = null, rich: Boolean = false, align: <Error class: unknown class>? = null, size: ModalSize? = null, animation: Boolean = true, centered: Boolean = false, callback: () -> Unit? = null) : Modal
Content copied to clipboard
Alert window based on Bootstrap modal.
Link copied to clipboard
open class Confirm( caption: String? = null, text: String? = null, rich: Boolean = false, align: <Error class: unknown class>? = null, size: ModalSize? = null, animation: Boolean = true, centered: Boolean = false, cancelVisible: Boolean = false, yesTitle: String = "Yes", noTitle: String = "No", cancelTitle: String = "Cancel", noCallback: () -> Unit? = null, yesCallback: () -> Unit? = null) : Modal
Content copied to clipboard
Confirm window based on Bootstrap modal.
Link copied to clipboard
open class Modal( caption: String? = null, closeButton: Boolean = true, size: ModalSize? = null, animation: Boolean = true, centered: Boolean = false, scrollable: Boolean = false, escape: Boolean = true, className: String? = null, init: Modal.() -> Unit? = null)
Content copied to clipboard
Configurable modal window based on Bootstrap modal.