I was wondering if you could call javascript inside of an ajax statment specificlly I am trying to get the following to work.
<p:commandLink id="saveButton" value="Save" >
<p:ajax event="click" actionListener="#{bean.saveButtonPressed()}" />
<p:ajax event="click" actionListener="if(#{cbean.showSaveOverlay}){saveOverlay.show();}" />
</p:commandLink>
And showSaveOverly gets set inside saveButtonPressed.
Any idea how I would do this?