MESCIUS InputMan for ASP.NET 10.0J
ValueChanged イベント
イベントが発生したコントロールのオブジェクト
イベントデータ
[jQuery対応]Valueプロパティの値が変更されたときに発生します。
シンタックス
var instance; // Type: GcDateTime
instance.ValueChanged = function(sender, eArgs) { };
ValueChanged = function ( 
   sender : Object,
   eArgs : EventArgs
) { };

パラメータ

sender
イベントが発生したコントロールのオブジェクト
eArgs
イベントデータ
使用例
function GcDateTime1_ValueChanged(sender, eArgs)
{
    // 入力された値をTextBoxに表示します。 
    document.getElementById("TextBox1").value = sender.GetText();
}
解説

日付時刻コントロールのイベントは、次の順序で発生します。

  1. TextChanged
  2. ValueChanged
  3. NumberChanged
参照

参照

GcDateTime タイプ

 

 


© MESCIUS inc. All rights reserved.