Advertisement
anilsenocak27

index.xhtml

Aug 2nd, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.91 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3.  
  4. <html xmlns="http://www.w3.org/1999/xhtml"
  5.     xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
  6.     xmlns:h="http://xmlns.jcp.org/jsf/html"
  7.     xmlns:f="http://xmlns.jcp.org/jsf/core"
  8.     xmlns:rich="http://richfaces.org/rich"
  9.     xmlns:a4j="http://richfaces.org/a4j"
  10.     xmlns:fn="http://java.sun.com/jsp/jstl/functions">
  11. <h:head>
  12.     <title>Richfaces DataTable Filter Example</title>
  13. </h:head>
  14. <ui:composition template="/template/layout.xhtml">
  15.     <ui:define name="content">
  16.         <rich:panel header="Header">
  17.  
  18.             <rich:dataTable value="#{userBean.userList}" var="u">
  19.  
  20.                 <rich:column><f:facet name="header">ID</f:facet>#{u.userID}</rich:column>
  21.  
  22.                 <rich:column><f:facet name="header">Name</f:facet>#{u.name}</rich:column>
  23.  
  24.             </rich:dataTable>
  25.  
  26.  
  27.         </rich:panel>
  28.     </ui:define>
  29. </ui:composition>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement