Advertisement
Guest User

Untitled

a guest
Jun 20th, 2011
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 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:a4j="http://richfaces.org/a4j"
  6. xmlns:rich="http://richfaces.org/rich"
  7. xmlns:h="http://java.sun.com/jsf/html"
  8. xmlns:t="http://myfaces.apache.org/tomahawk"
  9. xmlns:f="http://java.sun.com/jsf/core"
  10. xmlns:tr="http://myfaces.apache.org/trinidad"
  11. xmlns:ui="http://java.sun.com/jsf/facelets"
  12. xmlns:c="http://java.sun.com/jsp/jstl/core">
  13. <f:view>
  14. <h:head>
  15. </h:head>
  16.  
  17. <body>
  18.  
  19. <h:form>
  20. <h:inputText value="#{sessionScope.input}">
  21. <f:ajax event="keyup" render="output"/>
  22. </h:inputText><h:outputText id="output" value="#{sessionScope.input}"/>
  23. </h:form>
  24.  
  25. </body>
  26. </f:view>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement