New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Events
The Telerik UI Window for ASP.NET MVC exposes multiple events that allow you to control and customize the behavior of the UI component.
For a complete example on basic Window events, refer to the demo on using the events of the Window.
Handling by Handler Name
The following example demonstrates how to subscribe to events by handler name.
Razor
@(Html.Kendo().Window()
.Name("window")
.Events(e => e
.Open("window_open")
.Close("window_close")
)
)
Handling by Template Delegate
The following example demonstrates how to subscribe to events by using a template delegate.
Razor
@(Html.Kendo().Window()
.Name("window")
.Events(e => e
.Open(@<text>
function() {
// Handle the open event inline.
}
</text>)
.Close(@<text>
function() {
// Handle the close event inline.
}
</text>)
)
)