5 Replies Latest reply on Aug 30, 2007 2:48 PM by nbelaevski

    richfaces cache disable?

    yevgen_78

      I don't know, maybe this is not a richfaces problem but...

      a simple example works strange

      this a jsp

      <rich:scrollableDataTable height="330px" width="250px" hideWhenScrolling="true" id="testTable" var="item" value="#{testBean.tableList}">
      
       <rich:column width="110px" sortable="true">
       <f:facet name="header">
       <h:outputText value="First2Hel2" />
       </f:facet>
       <h:outputText value="#{item.val1}"/>
      
       </rich:column>
      
       <rich:column width="70px">
       <f:facet name="header">
       <h:outputText value="Second2Hello" />
       </f:facet>
       <h:outputText value="#{item.val2}"/>
      
       </rich:column>
      
       </rich:scrollableDataTable>
      

      i deploy this, start Tomcat, open Firefox 2.0 - works.
      now i change the width of table. stop tomcat->deploy->start Tomcat->firefox - the same result.

      with IE works.
      is we have a cache? How to disable it?

      Thanks