ConfirmDialog constructor

ConfirmDialog(String htmlTitleText, List<String> buttonLabels, BaseDialogCloseCallback closeCallback)

Creates and shows a modal dialog with: htmlTitleText = the dialog header buttonLabels = the labels of the action buttons at the bottom of the closeCallback = called when an action button is pressed (may be null)

Implementation

ConfirmDialog(String htmlTitleText, List<String> buttonLabels,
    BaseDialogCloseCallback closeCallback)
    : super(null, htmlTitleText, null, null, null, null, null, closeCallback,
          false, buttonLabels);