RichFaces: Difference between revisions

From Wiki RB4
 
(7 intermediate revisions by 2 users not shown)
Line 2: Line 2:


RichFaces is an open source framework that adds Ajax capability into existing JSF applications
RichFaces is an open source framework that adds Ajax capability into existing JSF applications
without resorting to JavaScript.
without writing a single line of javascript.


=Configuration=
=Configuration=


==Libraries==
* Using with [[Seam|Seam]] see TestEJBApplication
* Using with [[Seam|Seam]] see TestEJBApplication
** richfaces-api-3.2.2.GA.jar in ear-file
** richfaces-api-3.2.2.GA.jar in ear-file
** richfaces-impl-3.2.2.GA.jar, richfaces-ui-3.2.2.GA.jar in war-file
** richfaces-impl-3.2.2.GA.jar, richfaces-ui-3.2.2.GA.jar in war-file
** additionally commons-beanutils.jar, commons-digester.jar in ear-file (copied from seam-booking)
** additionally commons-beanutils.jar, commons-digester.jar in ear-file (copied from seam-booking)
==[[XHTML|XHTML]]==
<xmlns:a4j="http://richfaces.org/a4j">
<xmlns:rich="http://richfaces.org/rich">
==Tags==
===&lt;rich:panel>===
The &lt;rich:panel> allows to place the page elements in rectangle panel that can be skinned. The header is added using a facet with the attribute, name="header".


=Sources=
=Sources=
* Download of C:\Uwes\Zips\Java\Richfaces\richfaces-ui-3.2.2.GA-bin.zip
* Download of C:\Uwes\Zips\Java\Richfaces\richfaces-ui-3.2.2.GA-bin.zip
* Documentation in C:\Uwes\Documents\Software_Development\Programming\Frameworks\RichFaces\richfaces_reference.pdf
* Documentation in C:\Uwes\Documents\Software_Development\Programming\Frameworks\RichFaces\richfaces_reference.pdf
* Richfaces Home http://www.jboss.org/jbossrichfaces/
* Tag reference http://www.jboss.org/file-access/default/members/jbossrichfaces/freezone/docs/tlddoc/index.html
* Developers Guide http://www.jboss.org/file-access/default/members/jbossrichfaces/freezone/docs/devguide/en/html_single/index.html

Latest revision as of 23:20, 1 December 2008

Introduction[edit]

RichFaces is an open source framework that adds Ajax capability into existing JSF applications without writing a single line of javascript.

Configuration[edit]

Libraries[edit]

  • Using with Seam see TestEJBApplication
    • richfaces-api-3.2.2.GA.jar in ear-file
    • richfaces-impl-3.2.2.GA.jar, richfaces-ui-3.2.2.GA.jar in war-file
    • additionally commons-beanutils.jar, commons-digester.jar in ear-file (copied from seam-booking)

XHTML[edit]

<xmlns:a4j="http://richfaces.org/a4j">
<xmlns:rich="http://richfaces.org/rich">

Tags[edit]

<rich:panel>[edit]

The <rich:panel> allows to place the page elements in rectangle panel that can be skinned. The header is added using a facet with the attribute, name="header".

Sources[edit]