What is Syboos Htmllib?
2008/09/20 22:53Update
Syboos Htmllib is a JavaServer Faces(JSF) implementation for common html elements.
In JSF application, use <f:verbatim></f:verbatim> to embed unJSF html elements, the following is a typical usage:
It's not a beautiful style for some reason of page layout.
Syboos Htmllib is a JSF implementation for the common html elements, with Syboos Htmllib, you can rewrite the above:
<f:verbatim>
<table>
<tr>
<td>
</f:verbatim>
<h:outputText value="#{somevalue}" />
<f:verbatim>
</td>
</tr>
</table>
</f:verbatim>
It's not a beautiful style for some reason of page layout.
Syboos Htmllib is a JSF implementation for the common html elements, with Syboos Htmllib, you can rewrite the above:
<x:table>
<x:tr>
<x:td>
<h:outputText value="#{somevalue}" />
</x:td>
</x:tr>
</x:table>
Sponsored Link
- Relative Articles
- Syboos Htmllib Download - (2008/09/20 23:28)
- Syboos Htmllib quick start - (2008/09/20 23:10)
- Syboos Htmllib License- GNU LGPL - (2008/09/20 23:14)