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

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

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

TextChangedイベントは、ドロップダウンエディットのTextプロパティの値が変更された場合に発生します。
使用例
次のサンプルコードは、サーバーコードにクライアント側のTextChangedイベントを設定し、Textプロパティが変更されたときに文字列を取得する方法を示します。
GcTextBox1.DropDownEditor.ClientEvents.TextChanged = "DropDownEditor_TextChanged"
GcTextBox1.DropDownEditor.ClientEvents.TextChanged = "DropDownEditor_TextChanged";
function DropDownEditor_TextChanged()
{
    var gcTextBox1 = FindIMControl("GcTextBox1");
    document.getElementById("TextBox1").value = gcTextBox1.Text;
}
参照

DropDownEditorClientEvents クラス
DropDownEditorClientEvents メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.