Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 3rd, 2012  |  syntax: None  |  size: 0.45 KB  |  hits: 8  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. -- index.xhtml
  2.     <h:body>
  3.  
  4.         <ui:include src="clock.xhtml" />
  5.  
  6.     </h:body>
  7. -- clock.xhtml
  8.     <h:form>
  9.         <a4j:poll id="poll" interval="1000" enabled="#{pollBean.pollEnabled}" render="poll,grid" />
  10.     </h:form>
  11.  
  12.     <h:form>
  13.         <h:panelGrid columns="2" width="80%" id="grid">
  14.             <h:outputText id="serverDate" style="font-size:16px" value="Server Date: #{pollBean.date}" />
  15.         </h:panelGrid>
  16.     </h:form>