I need to detect when the backing bean method returns so that I can execute a javascript function. Alternatively, calling javascript code directly from within java source code would be helpful. Is there an example of how this is done?
Here, when this command button is clicked, both the action and onclick execute simultaneously. I need to execute the processAfterSave after the save method in the backing bean executes.
<h:commandButton id="saveButton" value="Save" type="submit" action="#{copyScript.save}" onclick="processAfterSave();" style="width: 75px;"/>