AlertDialog

class AlertDialog(alertType: AlertType = AlertType.NONE) : Dialog

Theme DSL

".alert_pane" { // A VBox.
    // This will also have a style of ".information", ".warning", ".error", ".none" or ".confirmation"
    // depending on the AlertType.

    child( ".heading" ) {
        // A Label
    }

    child( ".message" ) {
        // A TextArea
    }
}

Constructors

Link copied to clipboard
constructor(alertType: AlertType = AlertType.NONE)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
lateinit var textArea: TextArea