Magazine
 
Struts2 Tags

Output of the optiontransferselectTag.jsp:

11. Optgroup Tag (Form Tag) Example

The optgroup tag is a UI tag that creates an optgroup component which needs to resides within a select tag <s:select>.

Add the following code snippet into the struts.xml file

<action name=”optgroupTag”>
<result>/pages/formTags/
optgroupTag.jsp</result>
</action>

Create a jsp using the tag <s:optgroup>

Create a jsp using the tag <s:optgroup> within the <s:select> tag. It creates an optgroup component. This tag contains few parameters:

The label parameter sets the label attribute. In our case we have set it to “Hardware” and “Software”.

 

optgroupTag.jsp

<%@ taglib prefix=”s” uri=”/struts-tags” %>
<html>
<head>
<title>Optgroup Tag Example</title>
</head>
<body>
<h2>Optgroup Tag Example</h2>
<s:form>
<s:select label=”Please Select”
name=”select”
list=”%{#{‘PROGRAMMING’:’Programming’,
‘DATABASE’:’DataBase’,’WEBAPPLICATION’:
’WebApplication’}}”>
<s:optgroup label=”Hardware”
list=”%{#{‘CPU’:’Centeral
Processing
Unit’,’MOUSE’:’Mouse’,’KEYBOARD’:’Keyboard’}}”
/>
<s:optgroup label=”Sofrware”
list=”%{#{‘SYSTEM
SOFTWARE’:’System Software’,’APPLICATION
SOFTWARE’:’Application Software’}}” />
</s:select>
</s:form>
</body>
</html>

Feb 2008 | Java Jazz Up | 46
 
previous
index
next
 
View All Topics
All Pages of this Issue
Pages: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,

30
, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53 , 54, 55, 56, 57,

58
, 59, 60, 61, 62, 63 , 64, 65 , 66 , 67 , 68 , 69 , 70 , 71 , 72 ,

Download PDF