Hi,

I have a problem with a delete confirmation of struts2 and ajax. I using
following
<s:url id="deleteAddressHRef" action="deleteAddress-%{id}"
namespace="/businesscontactdata"></s:url>
<s:a id="deleteAddressLink" theme="ajax" href="%{deleteAddressHRef}"
targets="addresses" onclick="return confirmDelete();">
<s:url value= " alt="<s:text name="delete"/>" title="<s:text
name="delete"/>"/>
</s:a>

with the javascript function:
<script type="text/javascript">
        function confirmDelete() {
          check = confirm('Do you really want to delete the entry?');
          if ( !check ) {
                return false;
          }
          else {
                return true;
          }
        }
</script>


I thought that if I didn't confirm the message, the href will not execute.
But the action in the href will be execute in any case.

Is there anyone who can help me.

Many thanks.

Bye
Elisabeth

-- 
View this message in context: 
http://www.nabble.com/Problem-with-delete-confirmation-and-s%3Aa-with-ajax-tf3878492.html#a10990566
Sent from the Struts - User mailing list archive at Nabble.com.


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

Reply via email to