app.alert for custom dialog box
I have fieldA and button with custom dialog box.
How would I incorporate app.alert into dialog box so it stops dialog box to pop if value in fieldA is less then 5?
I know how to make code for app.alert:
if(this.getField("fieldA").value < 5){ app.alert("Need value of 5 or more");
I don't know how to put it inside dialog box so it stops it to execute.
