Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:a4j="http://richfaces.org/a4j"
- xmlns:rich="http://richfaces.org/rich"
- xmlns:h="http://java.sun.com/jsf/html"
- xmlns:t="http://myfaces.apache.org/tomahawk"
- xmlns:f="http://java.sun.com/jsf/core"
- xmlns:tr="http://myfaces.apache.org/trinidad"
- xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:c="http://java.sun.com/jsp/jstl/core">
- <f:view>
- <h:head>
- </h:head>
- <body>
- <h:form>
- <h:inputText value="#{sessionScope.input}">
- <f:ajax event="keyup" render="output"/>
- </h:inputText><h:outputText id="output" value="#{sessionScope.input}"/>
- </h:form>
- </body>
- </f:view>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement