2 Replies Latest reply on Dec 3, 2008 9:29 AM by jamesjmp

    I need to use richfaces css

    mhdez
      Hi everybody I have tried to use some css classes in my proyect to display a table like the repeat example from RichFacesLiveDemo and there is no way to do that! Here I post the code...
      I have a html tag in my page xhtml (not ui:composition), I require this.

      <table border="1" class="dr-table rich-table">
                  <thead class="dr-table-thead">
                      <tr class="dr-table-header rich-table-header">
                          <th class="dr-table-headercell rich-table-headercell"><h:outputText value="Product Code" /></th>
                          <th class="dr-table-headercell rich-table-headercell"><h:outputText value="Proposed Price" /></th>
                          <th class="dr-table-headercell rich-table-headercell"><h:outputText value="Sales Cost" /></th>
                          <th class="dr-table-headercell rich-table-headercell" style="width: 150px"><h:outputText value="Reason" /></th>
                          <th class="dr-table-headercell rich-table-headercell"><h:outputText value="Proposed Gross Margin" /></th>
                      </tr>
                  </thead>
      ...
                      </table>

      Where is "dr-table rich-table" and so on?? It is in skin.xcss
      location richfaces-ui-3.2.2.GA.jar package org.richfaces, but
      How can use it? Please help me...
      Thanks in advance
        • 1. Re: I need to use richfaces css
          kragoth

          Why can't you just use the richfaces components?


          Just because you are not inside a ui:composition doesn't mean that you can't use richfaces components.

          • 2. Re: I need to use richfaces css

            Hi:
            the best thing is to override richfaces css styles by defining things you would like to change in your project css.
            For instance, if you add in your project css this entry:


            .rich-menu-item-folder {
                 background-image:url(../img/flecha.gif);
                 background-position:left;
                 background-repeat:no-repeat;
            }
            


            when you use a rich component that has that css style, the style to be applied would be that you have defined and not default richfaces css style.
            In the reference are all the css styles of each component, so you just have to redefine what you need in your project css.
            Hope it helps.