Is there a way to have a double confirmation dialog on delete (I want the user to select a record, then click the delete-button in the toolbar and when clicking on "delete" in the dialog box I want the user to Confirm again "are you REALLY sure to delete this record permanently?")
thanks in advance for this great piece of software and your wonderful support!
kind regards from Germany
Michael
2 Answers
You can try following:
$grid["delete_options"]["beforeSubmit"] = "function(){ if (!confirm('Are you really sure?')) { return [false,'Operation cancelled']; } return [true,'']; }";
$g->set_options($grid);
Not a perfect solution but can't find a better alt now.
Your Answer