RE: Witango-Talk: Confirmation of a Submit

2006-05-22 Thread David Shelley
Mark, In the form tag, add an onSubmit handler, thus: onSubmit="return(confirm('Is the date '+this.shipdate.value+' the correct date?'))" That will bring up a javascript confirm box with "OK" and "Cancel". If the user clicks OK the form is submitted. If they click "Cancel" the form is not submit

Re: Witango-Talk: Confirmation of a Submit

2006-05-22 Thread Robert Garcia
A very simple method, would be to leave the field blank, when you supply the form, and just error if empty on submit. This wouild force them to put a value in. If you need them to see the OLD date, make it something like: Current date: 1/1/2006, please enter new date: Field goes here -- Ro

Re: Witango-Talk: Confirmation of a Submit

2006-05-22 Thread Mark Weiss
Thanks to all for the options. I will work on it. Mark On May 22, 2006, at 1:45 PM, David Shelley wrote: Mark, In the form tag, add an onSubmit handler, thus: onSubmit="return(confirm('Is the date '+this.shipdate.value+' the correct date?'))" That will bring up a javascript confirm box