PowerTools InputMan for ASP.NET 8.0J
SelectedIndexChanged プロパティ (ListClientEvents)
使用例 

SelectedIndexChangedクライアントイベントを取得または設定します。
構文
Public Property SelectedIndexChanged As String
public string SelectedIndexChanged {get; set;}
解説
SelectedIndexChangedクライアントイベントは、GcListBoxクラスのGcListBox.ClientEventsプロパティが参照する、ListoClientEventsオブジェクトのSelectedIndexChangedプロパティで指定します。

サーバーコードからクライアントイベントハンドラを作成する場合、GcListBoxクラスのClientEventsプロパティを使用します。 尚、クライアント側のスクリプトはJavaScriptによって記述し、ASPXページに実装します。

SelectedIndexChangedイベントは、SelectedIndexプロパティが変更されるとクライアント側で発生します。
使用例
次のサンプルコードは、サーバーコードにクライアント側のSelectedIndexChangedイベントを設定し、選択項目が変更されたときに、項目の内容を取得する方法を示します。
GcListBox1.ClientEvents.SelectedIndexChanged = "GcListBox1_SelectedIndexChanged"
GcListBox1.ClientEvents.SelectedIndexChanged = "GcListBox1_SelectedIndexChanged"
function GcListBox1_SelectedIndexChanged()
{
    var list1 = FindIMControl("GcListBox1")
    if (list1.SelectedIndex == -1 ) return;
    document.getElementById("TextBox1").value = list1.GetSelectedItem().content;
}
参照

ListClientEvents クラス
ListClientEvents メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.