What is Syboos Htmllib?

2008/09/20 22:53Update
TAGS: Htmllib | jsf

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:

<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>

有关作者
Syboos.jp編集長AJavaやオープンソース情報の執筆、Webサイトの開発や運営全般の業務に携わる。

Sponsored Link


Comments

  • Relative Articles