jfxAlert

fun <R> Stage.jfxAlert(title: String? = null, graphic: Node? = null, dialogAction: JFXAlert<R>.() -> Unit? = null): Optional<R>

Show a JFoenix alert with title and graphic.

Return

dialog result.

Parameters

title

title of the dialog.

graphic

node to be displayed in header.

dialogAction

custom dialog action.


inline fun <R> Stage.jfxAlert(noinline dialogAction: JFXAlert<R>.() -> Unit? = null): Optional<R>

Show an JFoenix alert.

Return

dialog result.

Parameters

dialogAction

custom dialog action.