msg
The message that will be displayed.
event
Event before the output of which the message will be displayed
func
JS function name for event handling
Example:
$this->alertDelete('Are you sure you want to delete?', 'onsubmit', 'confirmDelete');
JS:
function confirmDelete($msg) {
var result = confirm($msg);
if (result) {
return true;
} else {
return false;
}
}