If you have a JSF (which uses the onclick event of an to submit the current form), how do you execute Javascript (such as asking for delete confirmation) prior to the action being performed?
|
|
|
|
|
|
|
Other Javascript actions (like validating form input etc) could be performed by replacing the call to |
||
|
|
|
|
You can still use onclick. The JSF render kit specification (see Encode Behavior) describes how the link should handle it. Here is the important part (what it renders for onclick):
So your function wont be passed the event object (which isn't reliable cross browser anyway), but returning true/false will short-circuit the submission. |
||
|
|
|
In JSF 1.2 you can specify onclick events. Also, other libraries such as MyFaces or IceFaces implement the "onclick" handler. What you'd need to do then is simply:
Note: you can't just do |
||
|
|
|
|
If you want to execute something before the form is posted, for confirmation for example, try the form event onSubmit. Something like:
|
||
|
|
|
|
This never worked for me,
but this did
|
||
|
