バージョン

ValueChanging プロパティ (TextEditorClientEvents)

値が変更される前に呼び出される javascript 関数の名前を取得または設定します。
シンタックス
'宣言
 
Public Property ValueChanging As String
public string ValueChanging {get; set;}
解説

アクションはキャンセルできます。

使用例
Editor.ClientEvents.ValueChanging = "Editor_ValueChanging"
Editor.ClientEvents.ValueChanging = "Editor_ValueChanging";
// The client event 'ValueChanging' takes two parameters sender and e
// sender  is the object which is raising the event
// e is the TextEditorValueChangingEventArgs

//ID of the editor raising the event is "Editor"

function Editor_ValueChanging(sender, e) {

    //Gets the old value in the editor
    var oldValue = e.get_oldValue();

    //Gets the new value in the editor
    var newValue = e.get_value();

    if (!confirm("Are you sure you want to change the value '" + oldValue + "' to '" + newValue + "?"))

        //Cancels the ValueChanging event
        e.set_cancel(true);

}
参照