Mode

The mode property specifies the different types of dialog modes. The possible values are,

  1. alert

  2. confirm.

  3. custom.

  • HTML
  • <div style="text-align: center;">
            <input data-role="ejmbutton" type="button" data-ej-text="Open Dialog" data-ej-touchend="openAlertDialog" />
        </div>
        <div id="alertdialog" data-role="ejmdialog" data-ej-mode="confirm">
            <div>
                10% of battery remaining
            </div>
        </div>
  • JS
  • function openAlertDialog(args) {
                $("#alertdialog").ejmDialog("open");
            }