I have a modal window that I only want to launch when one of several forms on a page has errors. Is there a way using el to identify if a specific form has errors?
example pseudocode:
<h:form id="form1">
</h:form>
<h:form id="form2">
</h:form>
<a4j:rendered="#{form1.hasErrors()}">
... modal here ...
</a4j:rendered>