Last updated on
Apr 27, 2021
|
Also applies to ColdFusion
Showing a confirm alert dialog
Shows a confirm alert dialog
Method summary
confirm (message, title, buttonLabels) |
- returns – None
- params
- message (String) – The message on the dialog
- title (String) – The title of the dialog
- buttonLabels (String) - Comma-separated string specifying button labels. (String) (Optional, defaults to OK,Cancel)
For instance,
<cfset cfclient.notification.confirm("Notifying you!!!","Notification","Done")> |