Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2011
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. xmlns:h="http://java.sun.com/jsf/html"
  5. xmlns:p="http://primefaces.org/ui">
  6. <h:head>
  7. <title>Facelet Title</title>
  8.  
  9. <script type="text/javascript">
  10. function handleMessage(evt, data) {
  11. window.alert("hello !");
  12. $('.display').html(data);
  13. }
  14. </script>
  15. </h:head>
  16. <h:body>
  17. <h:form>
  18. <h:outputText value="#{globalCounter.count}" styleClass="ui-widget display" />
  19.  
  20. <br />
  21.  
  22. <p:commandButton value="Click" actionListener="#{globalCounter.increment}" />
  23. </h:form>
  24.  
  25. <p:push onmessage="handleMessage" autoConnect="true" channel="counter" />
  26.  
  27.  
  28. </h:body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement