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

Struts example source code file (edit.jsp)

This example Struts source code file (edit.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

apache, apache, employee, examples, id, id, license, license, name, name, password, save, see, you

The Struts edit.jsp source code

<%--

 Copyright 2006 The Apache Software Foundation.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
 
      http://www.apache.org/licenses/LICENSE-2.0
 
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.

 $Id: edit.jsp 564339 2007-08-09 18:59:58Z apetrelli $

--%>

<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %>

<f:view>

<html>
<!--  todo: make header variable -->
  <head>
    <title>JSF Integration Examples
  </head>

  <body>
  
  	<h1>Modify Employee
  	
  	<h:form>
  		<h:inputHidden value="#{action.currentEmployee.empId}" />
  		<h:panelGrid columns="3">
  		    <h:outputText value="Employee Id:" />
  			<h:inputText id="id" size="5" value="#{action.currentEmployee.empId}" required="true" />
  			<h:message for="id" />
  			
  			<h:outputText value="First Name:" />
  			<h:inputText id="firstName" size="30" value="#{action.currentEmployee.firstName}" required="true">
  			    <f:validateLength minimum="2" maximum="30" />
  			</h:inputText>
  			<h:message for="firstName" />
  			
  			<h:outputText value="Last Name:" />
  			<h:inputText id="lastName" size="30" value="#{action.currentEmployee.lastName}" required="true">
  			    <f:validateLength minimum="2" maximum="30" />
  			</h:inputText>
  			<h:message for="lastName" />
  			
  			<h:outputText value="Salary:" />
  			<h:inputText id="salary" size="10" value="#{action.currentEmployee.salary}" />
  			<h:message for="salary" />
  			
  			<h:outputText value="Married:" />
  			<h:selectBooleanCheckbox id="married" value="#{action.currentEmployee.married}" />
  			<h:message for="married" />
  			
  			<h:outputText value="Position:" />
  			<h:selectOneMenu id="position" value="#{action.currentEmployee.position}">
  		        <f:selectItems value="#{action.availablePositionsAsMap}" />
  			</h:selectOneMenu>
  			<h:message for="position" />
  			
  			<h:outputText value="Main Skill:" />
  			<h:selectOneMenu id="mainSkill" value="#{action.currentEmployee.mainSkill.name}">
  			    <f:selectItems value="#{action.availableSkills}" />
  			</h:selectOneMenu>
  			<h:message for="mainSkill" />
  			
  			<h:outputText value="Other Skills:" />
  			<h:selectManyListbox id="otherSkills" value="#{action.selectedSkills}" >
  			    <f:selectItems value="#{action.availableSkills}" />
  			</h:selectManyListbox>
  			<h:message for="otherSkills" />
  			
  			<h:outputText value="Password:" />
  			<h:inputSecret id="password" value="#{action.currentEmployee.password}" />
  			<h:message for="password" />
  			
  			<h:outputText value="Level:" />
  			<h:selectOneRadio id="level" value="#{action.currentEmployee.level}" >
  			    <f:selectItems value="#{action.availableLevelsAsMap}" />
  			</h:selectOneRadio>
  			<h:message for="level" />
  			
  			<h:outputText value="Comment:" />
  			<h:inputTextarea id="comment" value="#{action.currentEmployee.comment}" cols="50" rows="3" />
  			<h:message for="comment" />
  		</h:panelGrid>
  		
  		<h:commandButton value="Save" action="#{action.save}" />
  		<br />
<h:outputLink value="list.action"> <h:outputText value="Back" /> </h:outputLink> </h:form> </body> </html> </f:view>

Other Struts examples (source code examples)

Here is a short list of links related to this Struts edit.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.