2 Replies Latest reply on Oct 6, 2008 5:57 AM by sambolino

    a4j:support + a4j:outputPanel problem

    sambolino

      hello

      could someone explain please why one of these works and the other doesn't, and if it is expected behavior (although i don't see a reason why it should be):

      <h:selectOneMenu ... >
      ...
      <a4j:support event="onchange" reRender="abc" bypassUpdates="false" />
      </a4j:support>
      </h:selectOneMenu>

      this works:
      <s:decorate id="abc" ... >
      ...
      <h:inputText rendered="#{expr1}" />
      </s:decorate>

      but this doesn't:
      <a4j:outputPanel id="abc" rendered="#{expr1}"
      <s:decorate ... >
      ...
      <h:inputText />
      </s:decorate>
      </a4j:outputPanel>