New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

OnPopupClosing

The OnPopupClosing client-side event handler is called immediately before a popup calendar or time view is closed.

The event handler receives two arguments:

  1. the object that fired the event.

  2. an event arguments object that exposes the following methods:

OnPopupClosing event arguments object

Name Return Type Arguments Description
get_pickerControl() RadMonthYearPicker client object Returns the client object for the RadMonthYearPicker control.
set_cancel(value) bool Lets you prevent the popup from closing.

The following example uses the OnPopupClosing event to prevent the popup from closing if nothing is selected:

telerik:RadMonthYearPicker ID="RadMonthYearPicker1" runat="server"  >
    <ClientEvents OnPopupClosing="popupClosing" />
</telerik:RadMonthYearPicker>   
function popupClosing(sender, args) {
    alert("popup closing");
}

See Also

In this article