alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Struts example source code file (index.jsp)

This example Struts source code file (index.jsp) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Struts tags/keywords

area, attach, attach, div, div, div1, div1, examples, here, here, loading, mouse, over, textbox

The Struts index.jsp source code

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<%@ taglib prefix="sx" uri="/struts-dojo-tags" %>

<html>
<head>
    <title>Bind Examples
    <jsp:include page="/ajax/commonInclude.jsp"/>
</head>

<script type="text/javascript">
   dojo.event.topic.subscribe("/before", function(event, widget){
      alert('inside a topic event. before request');
      //event: set event.cancel = true, to cancel request
      //widget: widget that published the topic
   });
   
   dojo.event.topic.subscribe("/after", function(data, request, widget){
      alert('inside a topic event. after request');
      //data : text returned from request
      //request: XMLHttpRequest object
      //widget: widget that published the topic
   });
</script>

<body>

<div id="div1">Div 1
<s:url var="ajaxTest" value="/AjaxTest.action" /> <br/>
<p> 1. Attach to "onclick" event on button. Update content of Div 1. Use with indicator. <img id="indicator" src="${pageContext.request.contextPath}/images/indicator.gif" alt="Loading..." style="display:none"/> <sx:bind href="%{#ajaxTest}" sources="button" targets="div1" events="onclick" indicator="indicator" /> <br/> <s:submit theme="simple" type="submit" value="submit" id="button"/> </p> <br/>
<p> 2. Attach to "onmouseover", and "onclick" event on Area below and update content of Div1, highlight targets with green color <sx:bind id="ex2" href="%{#ajaxTest}" sources="div2" targets="div1" events="onmouseover,onclick" highlightColor="green"/> <div id="div2" style="width: 300px; height: 50px; border: 1px solid black"> Mouse Over or Click Here! </div> </p> <br/>
<p> 3. Attach to "onkeydown" event on Textbox below update content of Div1. Publish topics. <sx:bind id="ex4" href="%{#ajaxTest}" sources="txt1" targets="div1" events="onkeydown" beforeNotifyTopics="/before" afterNotifyTopics="/after" /> <br/> <s:textfield id="txt1"/> </p> <br/>
<s:include value="../footer.jsp"/> </body> </html>

Other Struts examples (source code examples)

Here is a short list of links related to this Struts index.jsp source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.