You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by Apache Wiki <wi...@apache.org> on 2006/06/06 14:46:41 UTC

[Myfaces Wiki] Update of "Upgrading to Tomahawk 1.1.3" by MarioIvankovits

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Myfaces Wiki" for change notification.

The following page has been changed by MarioIvankovits:
http://wiki.apache.org/myfaces/Upgrading_to_Tomahawk_1%2e1%2e3

New page:
=== Upgrading to Tomahawk 1.1.3 ===

== Dummy Form deprecation ==

Starting with this release the dummyForm has been deprecated. This means, any commandLink/commandButton/navigationMenu etc not embedded in an form will throw an exception.

If you use the MyFaces JSF implementation you can reenable it by adding the following to your faces-config.xml, though, you should consider changing your JSF pages as we dont know if and when this feature will find its way back into the main development.

{{{
<renderer>
    <component-family>javax.faces.Command</component-family>
    <renderer-type>javax.faces.Button</renderer-type>
    <renderer-class>org.apache.myfaces.renderkit.html.jsf.ExtendedHtmlButtonRenderer</renderer-class>
</renderer>

<renderer>
    <component-family>javax.faces.Command</component-family>
    <renderer-type>javax.faces.Link</renderer-type>
    <renderer-class>org.apache.myfaces.renderkit.html.jsf.ExtendedHtmlLinkRenderer</renderer-class>
</renderer>
}}}

Sorry for the inconvenience.