1 Reply Latest reply on Sep 13, 2013 10:17 AM by bleathem

    richfaces 3 to richfaces 4 migration

    manuel.moroni

      hello,

      i'm migrating an application from richfaces 3.3.3 to richfaces 4.3.3 and i can see that a lot of objects have been drop.

       

      • HtmlColumn setsortable is no longer available instead i use uicolumn but the method setsortable is absent
      • HtmlAjaxCommandLink is no longer available instead i use uicommandlink but the methods setajaxsingle, setrerender, setvalue, setfocus are absent
      • HtmlCalendar is no longer available indtead i use uicalendar but the method setcellwidth is absent
      • HtmlScrollableDataTable is no longer available instead i use uidatatable

       

      having said that i also have problems on the jsp pages where i sobstitute

                <%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>

                <%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>

                <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>

                <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>

       

      with

       

                <ui:composition xmlns="http://www.w3.org/1999/xhtml"

                xmlns:h="http://java.sun.com/jsf/html"

                xmlns:f="http://java.sun.com/jsf/core"

                xmlns:ui="http://java.sun.com/jsf/facelets"

                xmlns:a4j="http://richfaces.org/a4j"

                xmlns:rich="http://richfaces.org/rich"

                xmlns:x="http://myfaces.apache.org/extensions">

       

      but eclipse does not allow me to use the inellisens for a4j, rich.

       

      for the migration i followed the guide.

       

      can you help me in some way?

       

      thanks