So I'm having a problem with the header portion of this modalPanel code below. Before, "securityAuditAction.header" for the header was "noteAction.header" and seemed to be working fine for getting a hard-coded String as the header.
Now, I'm getting the following exception after I deploy the app and hit the XHTML page:
javax.el.ELException: /adminSecurityAudit.xhtml @38,70 value="#{securityAuditAction.header}": Error reading 'header' on type org.javassist.tmp.java.lang.Object_$$_javassist_1<rich:modalPanel id="mp" minHeight="200" minWidth="450"
height="200" width="500" zindex="2000">
<f:facet name="header">
<h:outputText value="#{securityAuditAction.header}"/>
</f:facet>
<f:facet name="controls">
<h:graphicImage value="/img/icon_edit.gif" style="cursor:pointer" onclick="Richfaces.hideModalPanel('mp')" />
</f:facet>
<a4j:form id="a4jForm">
<h:panelGrid columns="2" style="vertical-align:middle">
<h:inputText id="noteText" value="#{noteAction.noteText}"/>
<h:inputHidden id="rowIndex" value="noteAction.rowIndex"/>
<h:inputHidden id="colName" value="noteAction.colName"/>
<h:inputHidden id="siteId" value="noteAction.siteId"/>
<h:inputHidden id="employeeNumber" value="noteAction.employeeNumber"/>
<a4j:commandButton value="submit" action="#{noteAction.submit}" onclick="showNoteGraphic();Richfaces.hideModalPanel('mp')"/>
</h:panelGrid>
</a4j:form>
</rich:modalPanel>