...
- message - the message to display in the box
- callback - optional function to call when a button the dialog is presseddimissed
- title - optional title for the native dialog box
- button name - optionally overrides the name of the button to dismiss the dialog
...
Code Block | ||||
---|---|---|---|---|
| ||||
pui.alert("Process completed successfully");
pui.alert("Process completed successfully", function() { }, "My Application Name", "Done");
|
...