PowerTools InputMan for ASP.NET 8.0J
KeyPress プロパティ
使用例 

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

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

KeyPressイベントは、ドロップダウンエディットにフォーカスがあり、ユーザーがキーを押したときに発生します。
使用例
次のサンプルコードは、サーバーコードにクライアント側のKeyPressイベントを設定し、キーが押されたときのキーコードを取得する方法を示します。
GcTextBox1.DropDownEditor.ClientEvents.KeyPress = "DropDownEditor_KeyPress"
GcTextBox1.DropDownEditor.ClientEvents.KeyPress = "DropDownEditor_KeyPress";
function DropDownEditor_Click()
{
    alert("event.keyCode");
}
参照

DropDownEditorClientEvents クラス
DropDownEditorClientEvents メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.