RadNotification for ASP.NET AJAX

RadControls for ASP.NET AJAX

The OnClientHidden event occurs just after the notification is hidden. The event cannot be cancelled.

The event handler receives the following parameters:

  1. The RadNotification client instance that fired the event.

  2. Event arguments object.

CopyASPX
<telerik:RadNotification runat="server" ID="RadNotification1" VisibleOnPageLoad="true"
    Position="BottomRight" Width="250px" Height="100px"
    OnClientHidden="OnClientHidden" Text="Sample notification text">
</telerik:RadNotification>

<script type="text/javascript">
    function OnClientHidden(sender, eventArgs)
    {
        alert("OnClientHidden event fired by RadNotification with id: " + sender.get_id());
    }
</script>

See Also

Other Resources