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

a, a, ajaxremoteform, examples, go2, go4, go6, js, remote, remote, submit, submit, user, user

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>Ajax Examples
    <sx:head />

    <script language="JavaScript" type="text/javascript">
        dojo.event.topic.subscribe("/beforeSubmit", function(event, widget) {
            alert('you can manipulate the form before it gets submitted. To cancel the submit event set event.cancel=true');
            event.cancel = true;
        });
    </script>

</head>

<body>

<div id='two' style="border: 1px solid yellow;">initial content
<br />
Remote form replacing another div:<br/> <s:form id='theForm2' cssStyle="border: 1px solid green;" action='AjaxRemoteForm' method='post'> <input type='text' name='data' value='Struts User'> <sx:submit value="GO2" targets="two"/> </s:form> <br />
Remote form replacing the forms content:<br/> <s:form id='theForm3' cssStyle="border: 1px solid green;" action='AjaxRemoteForm' method='post'> <input type='text' name='data' value='Struts User'> <sx:submit value="GO3" targets="theForm3"/> </s:form> <br />
Remote form evaluating suplied JS on completion:<br/> <s:form id='theForm4' cssStyle="border: 1px solid green;" action='Test3' method='post'> <input type='text' name='data' value='Struts User'> <sx:submit value="GO4" executeScripts="true"/> </s:form> <br />
Submit outside form:<br/> <s:form id='theForm5' cssStyle="border: 1px solid green;" action='AjaxRemoteForm' method='post'> <input type='text' name='data' value='Struts User'> </s:form> <sx:submit value="GO5" formId="theForm5" targets="two"/> <br />
<s:url var="remoteUrl" namespace="/remoteforms" action="AjaxRemoteForm"/> Submit outside form, href in submit tag:<br/> <s:form id='theForm6' cssStyle="border: 1px solid green;" method='post'> <input type='text' name='data' value='Struts User'> </s:form> <sx:submit value="GO6" formId="theForm6" targets="two" href="%{#remoteUrl}"/> <br />
Remote form whose submit is cancelled:<br/> <s:form id='theForm7' cssStyle="border: 1px solid green;" action='AjaxRemoteForm' method='post'> <input type='text' name='data' value='Struts User'> <sx:submit value="GO7" targets="theForm7" beforeNotifyTopics="/beforeSubmit"/> </s:form> <br />
A form with no remote submit (so should not be ajaxified):<br/> <s:form id='theForm8' cssStyle="border: 1px solid green;" action='AjaxRemoteForm' method='post'> <input type='text' name='data' value='Struts User'> <s:submit value="Go AWAY" /> </s:form> </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.