1 Reply Latest reply on Oct 1, 2007 7:16 AM by ilya_shaikovsky

    Simple reRender problem

    piotr.walczyszyn

      Hi, I have a very simple reRender problem
      Here is a snippet of my code:

      ...
       <a:region>
       <a:log hotkey="Q"/>
       <a:form>
       <h:graphicImage value="/images/printer.png" />
       <a:commandLink reRender="printout1">
       <h:outputText value="drukuj" />
       <a:actionparam name="id" value="#{jobparam.id}" assignTo="#{printJob.jobToPrint}"/>
       </a:commandLink>
       </a:form>
       <a:outputPanel id="printout1">
       Y#{printJob.jobToPrint}Y
       </a:outputPanel>
       </a:region>
      ...
      


      I checked it with a:log and I see that the updated value comes in the response but the outputPanel is not reRender. The trick is that this code is placed in a ui:composistion that is ui:includ'ed from other page (withing h:dataTable component. When I checked the same code from the referencing page it all works fine.

      Any one has any idea what could that be?