File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Struts and the fly likes javascript confirm() is not working properly with struts dojo anchor tag Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "javascript confirm() is not working properly with struts dojo anchor tag" Watch "javascript confirm() is not working properly with struts dojo anchor tag" New topic
Author

javascript confirm() is not working properly with struts dojo anchor tag

lydia edward
Greenhorn

Joined: Feb 02, 2011
Posts: 11
Hi
I have a requirement like I need to call javascript confirm box and based on the user's decision i have to call href.
So i am using <sx:a> tag for hyperlink.

<%@taglib uri="/struts-dojo-tags" prefix="sx" %>

<td align="center"><sx:a id="url2" href="%{deleteUrlTag}" executeScripts="true" onclick="return confirm('Do you really want to delete this User');" targets="six" separateScripts="false">Delete</sx:a></td>

Here I am facing following issue:
When user clicks on "No", then also it is calling the href and deleting the user.
Ideally it should go for href in case of when user selects "YES".

I also tried with this solution but that didn't work.

<td align="center"><sx:a id="url2" href="%{deleteUrlTag}" executeScripts="true" onclick="return confirm('Do you really want to delete this User');return false;" targets="six" separateScripts="false">Delete</sx:a></td>


Can you please suggest me the solution for this.

Thanks
Satya
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: javascript confirm() is not working properly with struts dojo anchor tag
 
Similar Threads
spaces while populating using s:iterator
ajax code injected by ajax request using sx:bind does not work in struts 2.2
Not able to call javascript function from struts tag
Ajax not working on IE. Undefined error
Struts2.1 div problem in tabbedpanel