メニュー

ループ処理
条件文
値の受け渡し
static修飾子

配列の作成
ArrayListを使う
ArrayListと配列の変換

ファイル関係
ファイル読み込み
ファイル書き込み
オブジェクトのシリアライズ処理
バイナリファイルの入出力

今日の日付の取得

クラス
インターフェース

例外処理

スレッド関係
スレッド処理
スレッド処理の終了を待つ
スレッド間の同期処理

JDBCでMySQLに接続

Swing
フレームを表示
ボタンを配置
トグルボタンを配置
チェックボックスを配置
コンボボックスを配置
ラジオボタンを配置
リストを配置
プログレスバーを配置
テーブルを配置
パネルを配置
メニューバーを配置

JSP
スクリプティング
JavaBeansの利用
POSTデータ取得
Servletからリクエストデータ取得
jsp:forwardタグ
JSP Servlet JavaBeans連携

Servlet
Servletを作成
Postデータ取得

JSF
JavaBeansを利用
dataTableを利用
ボタンにイベントを追加
画面遷移
selectOneListbox
selectBooleanCheckbox

binding
selectManyListbox(bindingで配置)

Struts
Strutsを利用する

トップ
E-Mail
xml

ASP.Netのお勉強
VB.Netのお勉強
phpのお勉強
Excel マクロ・VBAのお勉強
ASP.Netで掲示板を作成しよう
AJAXのお勉強
Webデザインのお勉強
連想書籍検索
世界の観光地検索
路線図
総合サイトCocoaLiz

Valid HTML 4.01 Transitional

JSF selectManyListbox(bindingで配置)@Java

selectManyListboxタグを配置します。
bindingを用います。

jspを作成します。
selectManyListboxとcommandButton、outputLabelを配置します。
ボタンを押したら、選択されたselectManyListboxの値を表示します。

Beanを作成します。
selectManyListboxにbindingするUISelectManyをメンバに持ちます。

コンストラクタで、UISelectManyを生成します。
UISelectItemを生成し、getChildren().add()にて追加します。

ボタンクリックのメソッドを作成します。
ActionEventを引数として持ちます。
selectManyListbox.getSelectedValues()にて、
選択された値を取り出します。

jsp

<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
<% request.setCharacterEncoding("UTF-8");%>

<%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>selectManyListbox binding</title>
</head>
<body>

<f:view>
    <h:form>
        selectManyListbox
        <br>
        <h:selectManyListbox binding="#{ViewPageBean.selectManyListbox}">
        </h:selectManyListbox>
        <br>
        <h:commandButton value="選択" actionListener="#{ViewPageBean.btnClick}" />
        <h:outputLabel value="#{ViewPageBean.msg}" />
    </h:form>
</f:view>

</body>
</html>


Bean

package Beans;

import javax.faces.component.*;
import javax.faces.model.*;


public class ViewPageBean {

    //javax.faces.component.UISelectMany
    private UISelectMany selectManyListbox;
    private String msg;

    public ViewPageBean() {
        //UISelectMany生成
        selectManyListbox = new UISelectMany();

        //javax.faces.model.UISelectItemを生成する。
        UISelectItem itemA = new UISelectItem();
        itemA.setValue(new SelectItem("ItemA", "ItemA"));

        UISelectItem itemB = new UISelectItem();
        itemB.setValue(new SelectItem("ItemB", "ItemB"));

        UISelectItem itemC = new UISelectItem();
        itemC.setValue(new SelectItem("ItemC", "ItemC"));

        //selectManyListboxにUISelectItemを追加
        selectManyListbox.getChildren().add(itemA);
        selectManyListbox.getChildren().add(itemB);
        selectManyListbox.getChildren().add(itemC);

        msg = "";
    }

    public UISelectMany getSelectManyListbox() {
        return this.selectManyListbox;
    }

    public void setSelectManyListbox(UISelectMany selectManyListbox) {
        this.selectManyListbox = selectManyListbox;
    }

    public String getMsg() {
        return this.msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    public void btnClick(javax.faces.event.ActionEvent evt) {
        for (int i=0;i<this.selectManyListbox.getSelectedValues().length;i++) {
            msg += this.selectManyListbox.getSelectedValues()[i];
        }
        msg += "が選択されました。";
    }
}




Copyright (C) Javaのお勉強. All Rights Reserved.