Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.     <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3.     <HTML xmlns="http://www.w3.org/1999/xhtml"
  4.          xmlns:f="http://java.sun.com/jsf/core"
  5.          xmlns:h="http://java.sun.com/jsf/html"
  6.          xmlns:ui="http://java.sun.com/jsf/facelets"
  7.          xmlns:a4j="http://richfaces.org/a4j"
  8.          xmlns:rich="http://richfaces.org/rich">
  9.      
  10.         <h:head>
  11.             <meta NAME="Author" content="..."/>
  12.             <TITLE>
  13.                 <h:outputText value="#{resourceBundle....}" />
  14.             </TITLE>
  15.             ...
  16.         </h:head>
  17.      
  18.         <h:body>
  19.             <h:form id="form1">
  20.            
  21.             ...
  22.            
  23.                 <a4j:outputPanel id="showTest">
  24.                     <h:commandButton action="SAVE" value="..." rendered="..." disabled="..." styleClass="..." />
  25.                    
  26.                     <h:panelGroup>
  27.                         <h:selectOneMenu id="selectTest" ...>
  28.                             <f:selectItems value="..." ... />
  29.                             <a4j:ajax event="valueChange" render="showTest" execute="someFunction" />
  30.                             <a4j:jsFunction id="someFunction" name="someFunction" action="AJAX_TEST" ajaxsingle="true" />
  31.                         </h:selectOneMenu>
  32.                     </h:panelGroup>
  33.                    
  34.                     ...
  35.                    
  36.                 </a4j:outputPanel>
  37.             </h:form>
  38.         </h:body>
  39.     </HTML>