ASP.NET MVC PopOver Overview
The PopOver is part of Telerik UI for ASP.NET MVC, a
professional grade UI library with 110+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.
The Telerik UI PopOver HtmlHelper for ASP.NET MVC is a server-side wrapper for the Kendo UI PopOver widget.
The PopOver is a transient view that appears when the user clicks on a specified element or hovers within a particular area. It can contain elements such as buttons, icons, lists, and so on.
PopOver vs. Tooltip
The PopOver and Tooltip components share some similar features - you can use both to display some additional content. The following list describes the differences between them.
The PopOver:
- Usually holds more content than the Tooltip (The PopOver has a header and body section).
- Allows you to add a variety of graphical elements.
- Supports action buttons.
- Provides additional context to the parent element.
The Tooltip:
- Usually holds less content than the PopOver.
- Is designed to display a small amount of text.
- Provides clarification to the parent element.
Initializing the PopOver
The PopOver is usually displayed or dismissed as a result of a user action. It exposes various options for positioning.
The following example demonstrates how to define the PopOver.
<span id="info" class="k-button k-button-solid-primary k-button-solid k-button-md k-rounded-md">Hover me!</span>
@(Html.Kendo().Popover()
.For("#info")
.Position(PopOverPosition.Right)
.ShowOn(PopoverShowOn.MouseEnter)
.Body("Main content")
)
Basic Configuration
The PopOver provides default configuration options such as its height and width, action buttons, header and body content, animations and events that will trigger its opening, and so on.
The following example demonstrates the basic configuration of the PopOver.
<span id="info" class="k-button k-button-solid-primary k-button-solid k-button-md k-rounded-md">Click here</span>
@(Html.Kendo().Popover()
.For("#info")
.Width(120)
.Height(120)
.Position(PopoverPosition.Top)
.Header("More Information:")
.Body("Information content")
.Actions(a => a.Add().Text("Okay"))
.ActionsLayout(PopoverActionsLayout.Center)
.Animation(animation =>
{
animation.Open(op => op.Zoom(ZoomDirection.In).Duration(5));
animation.Close(cl => cl.Zoom(ZoomDirection.Out).Duration(5));
})
.ShowOn(PopoverShowOn.Click)
)
Functionality and Features
- Templates—The PopOver provides template options that allow you to customize the header and body content.
-
Events—The component exposes the
Show
andHide
events that you can handle and control its behavior.