Events
The Telerik UI PopOver component for ASP.NET Core exposes the Hide
and Show
events. You can handle these events to implement custom functionality.
For a complete example on basic PopOver events, refer to the demo on using the events of the PopOver.
The following example demonstrates how to subscribe to events by a handler name.
@(Html.Kendo().PopOver()
.Name("popover")
.Events(e => e
.Show("onShow")
.Hide("onHide")
)
)
<script>
function onShow(e) {
// Handle the show event.
}
function onHide(e) {
// Handle the hide event.
}
</script>