Quick way to create JSF custom component
Posted
by michael lucas
on Stack Overflow
See other posts from Stack Overflow
or by michael lucas
Published on 2010-04-27T07:13:36Z
Indexed on
2010/04/29
7:47 UTC
Read the original article
Hit count: 473
I know of two ways of creating custom JSF components: 1. Native JSF way: creating JSF component class, tag, etc. 2. Facelets way: defining component in a xhtml file and then creating appropriate decrption in facelets taglib.
Currently I work on a project in which introducing facelets is unfortunately out of the question. On the other hand, creating custom components the standard JSF way seems like a pain in the ass.
Is there maybe a third party library that allows creating custom components in the way similar to facelets but doesn't entail the need of using non-standard renderer?
© Stack Overflow or respective owner