名前空間一覧 > GrapeCity.Web.Input.IMEdit 名前空間 > DropDownEditor クラス : ClientEvents プロパティ |
Public Overridable Property ClientEvents As DropDownEditorClientEvents
public virtual DropDownEditorClientEvents ClientEvents {get; set;}
イベント名 | 説明 |
---|---|
Click | クリックされたときに発生します。 |
DoubleClick | ダブルクリックされたときに発生します。 |
InvalidInput | 無効な文字が入力されたときに発生します。 |
KeyDown | キーを押したときに発生します。 |
KeyPress | キーを押したときに発生します。 |
KeyUp | キーを離したときに発生します。 |
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; }