バージョン

CalendarClosed プロパティ

ドロップダウンのカレンダーが閉じられた後に呼び出される javascript 関数の名前を取得または設定します。
シンタックス
'宣言
 
Public Property CalendarClosed As String
public string CalendarClosed {get; set;}
解説

カレンダーの選択された日付で WebDatePicker の更新をキャンセルして、値を変更することができます。

注: イベントを alert、confirm、またはその他の動作で中断しないでください。デフォルトの順序、フォーカス、またはブラウザーのその他のイベントのタイミングを損なう可能性があります。

使用例
WebDatePicker1.ClientSideEvents.CalendarClosed = "WebDatePicker_CalendarClosed"
WebDatePicker1.ClientSideEvents.CalendarClosed = "WebDatePicker_CalendarClosed";
// The client event 'CalendarClosed' takes two parameters sender and e
// sender  is the object which is raising the event
// e is the TextEditorValueChangingEventArgs

function WebDatePicker_CalendarClosed(sender, e) {

     //Gets the new date selected in the drop-down calendar
     var newValue = e.get_value();

     if(!confirm("Are you sure you want to select the date '" + newValue + "'?"))
     
           //Cancels the selected date in the drop-down calendar from updating as the value of the editor
           e.set_cancel(true); 
     
 }
参照