I made a simple test page

<%@ taglib uri="http://myfaces.apache.org/tobago/component"; prefix="tc" %>
<%@ taglib uri="http://myfaces.apache.org/tobago/extension"; prefix="tx" %>
<%@ taglib uri="http://java.sun.com/jsf/core"; prefix="f" %>
<%@ taglib tagdir="/WEB-INF/tags/layout" prefix="layout" %>

<layout:overview>
 <jsp:body>
   <tc:panel>
       <tc:sheet value="#{currencyGui.currenciesFilter}"
           id="sheet"
           columns="3*;1*;3*;3*;3*;3*"
           var="row"
           showHeader=""
           showRowRange="4"
           showPageRange="4"
           showDirectLinks=""
           pagingStart="0"
           pagingLength="8"
           directLinkCount="12">
         <tc:column label="ID" id="ID" sortable="true">
           <tc:out value="#{row.id}" id="t_name" />
         </tc:column>
<tc:column label="Description" id="number" sortable="true" align="center" >
           <tc:out value="#{row.description}" id="t_number"/>
         </tc:column>
       </tc:sheet>
   </tc:panel>
 </jsp:body>
</layout:overview>


but the styles are not loaded, any idea how to fix it ?

Regards

Reply via email to