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.
@(Html.Kendo().Window()
.Name("window")
.Events(e => e
.Open("window_open")
.Close("window_close")
)
)
<script>
function window_open() {
// Handle the open event.
}
function window_close() {
// Handle the close event.
}
</script>
Handling by Template Delegate
The following example demonstrates how to subscribe to events by using a template delegate.
@(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>)
)
)