0 Replies Latest reply on Mar 12, 2010 4:16 AM by iimirela

    repeat rich:paint2D

    iimirela

      Hello,

       

        

            I'm trying to use rich:paint2D inside a rich:datagrid, so that I can obtain different pictures (thery're actually clocks, pointing to different times), but the paint method seems to be called only once.

      Here's the code:

      <rich:dataGrid value="#{Bean.timeSlots}" var="timeSlot" columns="8">
           <rich:paint2D width="70" height="70" data="#{paintData}" format="gif" 
                 paint="#{Bean.paint}" />
      </rich:dataGrid>     
      

      Scope of paintData bean is request, Bean->session.

      Help...