Struts2教學
Struts2快速入門
Struts2 MVC架構
Struts2 是什麼?
Struts2 環境配置
Struts2 體系結構
Struts2 Hello World 實例
Struts2 配置文件
Struts2 Action/動作
Struts2 攔截器
Struts2 結果和結果類型
Struts2 值棧/OGNL
Struts2 文件上傳
Struts2 MySQL數據庫訪問
Struts2 發送郵件Email
Struts2 驗證框架
Struts2 基於XML校驗
Struts2 本地化/國際化(i18n)
Struts2 類型轉換
Struts2 主題和模板
Struts2 異常處理
Struts2 註釋
Struts2 註釋類型
Struts2 控件標籤
Struts2 iterator標籤
Struts2 if/else標籤
Struts2 merge標籤
Struts2 append標籤
Struts2 generator標籤
Struts2 數據標籤
Struts2 action標籤
Struts2 include標籤
Struts2 bean 標籤
Struts2 date 標籤
Struts2 param 標籤
Struts2 property 標籤
Struts2 set 標籤
Struts2 text 標籤
Struts2 url標籤
Struts2 表單標籤
Struts2 Ajax 標籤
Struts2和Spring集成
Struts2和Tiles集成
Struts2和Hibernate集成
Struts 2 hello world (XML版本)
Struts2註解示例
Struts2 @ResultPath註釋示例
Struts2 include(包含)多個配置文件
Struts2命名空間配置和解釋
Struts2開發者模式
如何刪除Struts2動作的後綴擴展名
使用Struts2動作
Struts2的ActionError&ActionMessage示例
Struts2模型驅動實例
Struts2映射攔截動作
Struts2重寫攔截器參數
Struts2攔截器棧的例子
Struts2 execAndWait攔截器例子
Struts2 <s:textfield>文本示例
Struts2 <s:password>密碼示例
Struts2 <s:hidden>隱藏值例子
Struts2 <s:textarea>文本域實例
Struts2 <s:radio>單選按鈕例子
Struts2單選預選按鈕值
Struts2 <s:checkbox>複選框例子
Struts2設置多個複選框缺省值
Struts2 <s:checkboxlist>多個複選框例子
Struts2 <s:select>下拉框例子
Struts2自動選擇下拉框的值
Struts2 <s:combobox>組合框的例子
Struts2 <s:head>示例
Struts2文件上傳例子
Struts2上傳多個文件例子
Struts2 <s:doubleselect>示例
Struts2 <s:updownselect>示例
Struts2 <s:optiontransferselect>示例
Struts2 <sx:datetimepicker>示例
Struts2 <sx:autocompleter>自動提示例子
Struts2 autocompleter+JSON例子
Struts2 <s:iterator>迭代器標籤示例
Struts2 if,elseif,else標籤示例
struts2 <s:append>標籤示例
Struts2 <s:generator>標籤示例
Struts2 <s:merge>標籤示例
Struts2 <s:sort>標籤示例
Struts2 <s:subset>標籤示例
Struts2 <s:a>標籤示例
Struts2 <s:action>標籤示例
Struts2 <s:bean>標籤示例
Struts2 <s:date>標籤示例
Struts2 <s:debug>標籤示例
Struts2 <s:include>標籤示例
Struts2 <s:i18n>標籤示例
Struts2 <s:param>標籤示例
Struts2 <s:property>標籤實例
Struts2 <s:push>標籤示例
Struts2 <s:set>標籤示例
Struts2 <s:texttag>標籤示例
Struts2 <s:url>標籤示例
Struts2資源包使用示例
Struts2本地化和國際化
Struts2 key鍵屬性示例
Struts2中文本地化問題
如何配置Struts2全局資源包
Struts2+Spring集成實例
Struts2+Quartz2調度集成實例
Struts2+Hibernate使用Full Hibernate Plugin集成
Struts2+Hibernate集成實例
Struts2+Spring+Hibernate集成實例
Struts2+Log4j集成
Struts2的FilterDispatcher和StrutsPrepareAndExecuteFilter有什麼不同?
Struts2獲取HttpServletRequest實例
Struts2獲取HttpServletResponse實例
如何獲取ServletContext對象
Struts2配置Action類的靜態參數
Struts2下載文件實例
Struts2和JSON實例

Struts2 <s:optiontransferselect>示例

在Struts2中,選項選擇組件是兩個「updownselect」選擇部件在左,右側對齊,在它們中間,包含按鈕來移動自己的選擇選項。通過<s:optiontransferselect>標籤這可以創建。

這裏創建一個Web工程:strut2updownselect,來演示在多個複選框如何設置的默認值,整個項目的結構如下圖所示:

Struts2

<s:optiontransferselect
label="Lucky Numbers"
name="leftNumber"
list="{'1 - One ', '2 - Two', '3 - Three', '4 - Four', '5 - Five'}"
doubleName="rightNumber"
doubleList="{'10 - Ten','20 - Twenty','30 - Thirty','40 - Forty','50 - Fifty'}"
/>

「name」和「list」是指向左選擇組件;而「doubleName」和「doubleList」是指在正確的選擇組。

產生下面的HTML,兩個「updownselect」組件,按鈕和JavaScript來自己動(默認的XHTML主題)之間的選擇選項。

Struts2 <s:optiontransferselect> 示例

一個完整的全面的 <s:optiontransferselect> 標籤例子,表明使用OGNL和Java列出來填充數據到「選項中選擇轉移」的組件。

1. 動作類

Action類來生成並存儲左右選擇選項。

OptionTransferSelectAction.java

package com.yiibai.common.action;

import java.util.ArrayList;
import java.util.List;

import com.opensymphony.xwork2.ActionSupport;

public class OptionTransferSelectAction extends ActionSupport{

private List<String> leftAntivirusList = new ArrayList<String>();
private List<String> rightAntivirusList = new ArrayList<String>();

private String leftAntivirus;
private String rightAntivirus;

private String leftNumber;
private String rightNumber;

public OptionTransferSelectAction(){

    leftAntivirusList.add("Norton 360 Version 4.0");
    leftAntivirusList.add("McAfee Total Protection 2010");
    leftAntivirusList.add("Trend Micro IS Pro 2010");
    leftAntivirusList.add("BitDefender Total Security 2010");

    rightAntivirusList.add("Norton Internet Security 2010");
    rightAntivirusList.add("Kaspersky Internet Security 2010");
    rightAntivirusList.add("McAfee Internet Security 2010");
    rightAntivirusList.add("AVG Internet Security 2010");
    rightAntivirusList.add("Trend Micro Internet Security 2010");
    rightAntivirusList.add("F-Secure Internet Security 2010");

}

public String getLeftNumber() {
    return leftNumber;
}

public void setLeftNumber(String leftNumber) {
    this.leftNumber = leftNumber;
}

public String getRightNumber() {
    return rightNumber;
}

public void setRightNumber(String rightNumber) {
    this.rightNumber = rightNumber;
}

public List<String> getLeftAntivirusList() {
    return leftAntivirusList;
}

public void setLeftAntivirusList(List<String> leftAntivirusList) {
    this.leftAntivirusList = leftAntivirusList;
}

public List<String> getRightAntivirusList() {
    return rightAntivirusList;
}

public void setRightAntivirusList(List<String> rightAntivirusList) {
    this.rightAntivirusList = rightAntivirusList;
}

public String getLeftAntivirus() {
    return leftAntivirus;
}

public void setLeftAntivirus(String leftAntivirus) {
    this.leftAntivirus = leftAntivirus;
}

public String getRightAntivirus() {
    return rightAntivirus;
}

public void setRightAntivirus(String rightAntivirus) {
    this.rightAntivirus = rightAntivirus;
}

public String execute() throws Exception{

    return SUCCESS;
}

public String display() {
    return NONE;
}

}

2. 結果頁面

通過「<s:optiontransferselect>」選項轉移選擇組件標籤渲染,並通過Java和OGNL列表產生左側和右側選擇選項。

optiontransferselect.jsp

<%@ taglib prefix="s" uri="/struts-tags" %>

Struts 2 optiontransferselect 示例

<s:form action="resultAction" namespace="/" method="POST" >

<s:optiontransferselect
label="Lucky Numbers"
name="leftNumber"
list="{'1 - One ', '2 - Two', '3 - Three', '4 - Four', '5 - Five'}"
doubleName="rightNumber"
doubleList="{'10 - Ten','20 - Twenty','30 - Thirty','40 - Forty','50 - Fifty'}"
/>

<s:optiontransferselect
label="Favourite Antivirus"
name="leftAntivirus"
leftTitle="Left Antivirus Title"
rightTitle="Right Antivirus Title"
list="leftAntivirusList"
multiple="true"
headerKey="-1"
headerValue="--- Please Select ---"
doubleList="rightAntivirusList"
doubleName="rightAntivirus"
doubleHeaderKey="-1"
doubleHeaderValue="--- Please Select ---"
/>

<s:submit value="submit" name="submit" />

result.jsp

<%@ taglib prefix="s" uri="/struts-tags" %>

Struts 2 optiontransferselect example

Left AntiVirus :

Right AntiVirus :

Left Numbers :

Right Numbers :

3. struts.xml


/pages/optiontransferselect.jsp


/pages/result.jsp

4. 實例

http://localhost:8080/struts2optiontransferselect/optionTransferSelectAction.action

Struts2

Struts2

參考

  1. Struts 2 updownselect 文檔
  2. Struts 2 updownselect 示例
  3. Struts 2 doubleselect 示例

代碼下載: http://pan.baidu.com/s/1qW5p8lu