Guest User

Untitled

a guest
Feb 28th, 2012
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.75 KB | None | 0 0
  1. <%@ taglib prefix="s" uri="/struts-tags" %>
  2. <%@ taglib prefix="sj" uri="/struts-jquery-tags"%>
  3.  
  4. <html>
  5.  
  6.     <head>
  7.         <sj:head/>
  8.     </head>
  9.  
  10.     <body>
  11.  
  12.         <div id="formResult">
  13.             <p>Echo : ${yourName}</p>
  14.         </div>
  15.  
  16.         <s:form id="form" action="put">
  17.              <s:textfield id="echo" name="yourName"/>
  18.         </s:form>
  19.  
  20.         <sj:a
  21.            id="ajaxformlink"
  22.            formIds="form"
  23.            targets="formResult"
  24.            indicator="indicator"
  25.            button="true"
  26.            buttonIcon="ui-icon-gear"
  27.        >
  28.             Submit form here
  29.         </sj:a>
  30.  
  31.         <img id="indicator" src="images/indicator.gif" alt="Loading..." style="display:none"/>
  32.  
  33.     </body>
  34.  
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment