カレンダーの選択された日付で 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); }