1 Reply Latest reply on Mar 19, 2010 7:35 AM by nbelaevski

    Custom Tag with Richfaces Component

      Hi Friends,

       

      My project involves JSF 1.2+Facelets+Richfaces.

      I am developing a functionality in which i am stuck badly at a point.

      I thought a solution which involves JSF custom tag with Richfaces Component

       

       

      I need to generate a div with custom CSS(back ground image) .On that particular div i need to draw a data grid.

      Each grid should contains <rich:dropsupport>.So my code in custom tag will be something like this :

       

      <div >

      for(..row...){

           <tr>

                {
                     for(..columns..){

                          <td>

                                    <rich:dropSupport>(*)

                           </td>

                } 

           </tr>

      }

      </div>

      <rich:dataScroller> //i want this scroller to change background image in div

       

      Problems :


      1)How i can club up richfaces component in custom tag(*) dynamically or How can i generate Richfaces component from custom tag code.

      2)If yes,please give me some hint code how to call these components from inside custom tag

       

      Thanks,

      Pulkit