PopoverEventBuilder
Methods
Show(System.String)
Defines the handler of the Show client-side event. Fires when the PopOver is shown.
For more information see Show event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the Show event.
Example
Razor
@(Html.Kendo().Popover()
.For("#calendar")
.Filter("td a")
.Events(e => e.Show("onShow"))
)
Hide(System.String)
Defines the handler of the Hide client-side event. Fires when the PopOver is hidden.
For more information see Hide event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the Hide event.
Example
Razor
@(Html.Kendo().Popover()
.For("#calendar")
.Filter("td a")
.Events(e => e.Hide("onHide"))
)