if(input.Account_ID != null)
{
delete from Account[ID == input.Account_ID];
openUrl(("#View:Accounts"),"same window");
}
the above script runs when a form button is clicked. I need it first to ask a confirmation with the options confirm or cancel. Again, I just need a way for users to confirm they want to delete.
Thank you.