I think you meant to say:

  if (window.confirm("Are you sure you want to " + target) == true)

Craig
<tataryn:craig/>

On Wed, 10 Mar 2004 14:20:27 -0500, [EMAIL PROTECTED] wrote:

> 
> My JavaScript is rusty, but something along the lines of:
> 
> function set(target) {
> 
>       if ("Are you sure you want to " + target) == true)
>       {
>               document.forms[0].dispatch.value=target;
>               document.forms[0].submit();
>       }
> }
> 
> -----Original Message-----
> From: as as [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, March 10, 2004 1:55 PM
> To: Struts Users Mailing List
> Subject: javascript delete function wih struts
> 
> 
> 
> Hi
>  
> I want to show a pop up (delete confirmation in my page) when user
> clicks on delete button.The pop up will show "Are you sure you want to
> delte-yes or no"
> If user clicks on yes, then my page should set a page variable names
> "dispatch" to "delete".ANd then call my form's post action, which will
> route it to the next page...
> how do i accomplish these two tasks for the onlye one button click?
> Thanks in advance,
> Sam.
>  
> My code below:
>  
>  
> 
> <SCRIPT LANGUAGE="JavaScript">
> 
> function set(target) {document.forms[0].dispatch.value=target;}
> 
> </script>
> 
> <table border="1" width="100%">
> 
> 
> 
> <tr>
> 
> <th>
> 
> <html:submit onclick="set('delete');">Delete</html:submit> 
> 
> ......
> 
>  
> 
> so basically i want a pop up when user clicks the above Delete button
> (struts uses <html:submit  to generate a HTML button) and when i click
> on the yes on this pop up, i want the set(target) to get set
> 
> Thanks in advance for help,
> 
> Sam.
> 
> 
> 
> 
> ---------------------------------
> Do you Yahoo!?
> Yahoo! SiteBuilder - Free web site building tool. Try it!
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


<tataryn:craig/>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to