1 Reply Latest reply on Nov 20, 2007 10:42 AM by furic

    reRendering a parent component from a popup

      Hi there,
      In my application there is a popup that demand some actions from the user. After that actions I need to reRender some components in the parent window....how can I do that?

      Just to do an example here is what I want

      Parent

      <h:outputText id="parentOutputText" value="#{bean.value1}"


      Popup
      <h:inputText value="#{bean.value1}" />
      <a4j:commandButton reRender="parentOutputText" action="#{bean.action1}" />


      Is that possible?