4 Replies Latest reply on Jul 19, 2007 8:49 AM by alexndr

    My JSF messages won't appear....

    markus1999

      I can get them with this:
      <h:messages layout="table" showDetail="true" showSummary="true"
      errorClass="errors" />

      But not with this


      <h:panelGroup>
      <h:inputText rendered="#{pageBean.editPageCurrency}"
      id="pageCurrencyId" value="#{pageBean.pageCurrency.double}">
      <f:convertNumber maxFractionDigits="2" />
      <f:validateDoubleRange minimum="100" maximum="4000" />
      </h:inputText>
      <h:panelGroup>
      <h:message for="pageCurrencyId" id="pageCurrencyMessageId"
      errorClass="errors" />



      So where's the problem, is it me, JSF or JBOSS portal ?