2 Replies Latest reply on Oct 21, 2007 10:14 PM by sergeysmirnov

    How to contain HTML tags inside <rich:panel>

    martinjozef

      Hi,

      What do i need to do, configure so that JSF includes my html tags inside the panel for example:

      <rich:panel id="personalPanelGroup" >
       <rich:effect event="onclick" type="Fade" />
       <rich:effect event="onclick" for="personalPanelGroup" type="Appear" params="delay:3.0,duration:0.5" />
      
      
       <div class="entry">
       <div class="label">
       <h:outputText value="First,Middle,Last:"/>
       </div>
       <div class="input">
       <h:inputText id="cFirstName" value="#{customer.firstName}" required="true"> </h:inputText>
       </div>
       </div>
      
      </<rich:panel >
      


      All the div tags get ignored inside the panel, is this normal behavior ?