0 Replies Latest reply on Jul 27, 2011 12:17 PM by langer123

    HtmlDataTable in Richfaces 4

    langer123

      I'm getting the following message after upgrading all my jars to Richfaces 4.

       

       

      The import org.richfaces.component.html.HtmlDataTable cannot be resolved
      

       

      For this import:

       

      import org.richfaces.component.html.HtmlDataTable;
      

       

       

      Would I be correct in saying I need to use the following instead now?

       

       

      import org.richfaces.component.UIDataTable;
      

       

       

      And if so, will replacing the following code:

       

       

      HTMLDataTable table = (HtmlDataTable) component;
      

       

      with the following work exactly as before?:

       

       

      UIDataTable table = (UIDataTable) component;
      

       

       

      Appreciate any help, I can't find anything on this using Google.