Skip to main content
Participant
August 29, 2024
Answered

JavaScript "Are you Sure?" dialog box script?

  • August 29, 2024
  • 1 reply
  • 699 views

I have a button I created for deleting a template-generated page using the following script: 

this.deletePages(this.pageNum, this.pageNum) ;

I would like to add a popup warning, so that when the user clicks the button they are warned first before the page is deleted. e.g., "Delete current page? This action is not reversible."


OK proceeds, Cancel cancels the action.

 

I feel this is very possible, but a bit outside my Java knowledge.

This topic has been closed for replies.
Correct answer PDF Automation Station

 

if(app.alert("Delete current page? This action is not reversible.",3,1)==1)
{this.deletePages(this.pageNum,this.pageNum)}

 

1 reply

PDF Automation Station
Community Expert
Community Expert
August 29, 2024

 

if(app.alert("Delete current page? This action is not reversible.",3,1)==1)
{this.deletePages(this.pageNum,this.pageNum)}

 

jay_0171Author
Participant
August 29, 2024

Perfect, thank you!