PopoverContainerDirective
Represents the kendoPopoverContainer
directive.
Filters and targets multiple elements to display a popover on user interaction.
<div kendoPopoverContainer [popover]="myPopover" filter=".has-popover">
<button class="has-popover">Show Popover</button>
<button>Button Without Popover</button>
<button class="has-popover">Show Popover</button>
</div>
Selector
[kendoPopoverContainer]
Export Name
Accessible in templates as #kendoPopoverContainerInstance="kendoPopoverContainer"
Inputs
Name | Type | Default | Description |
---|---|---|---|
filter |
|
Specifies a selector for the elements that display a popover. Accepts a CSS selector string similar to a querySelector method. See example. | |
popover |
|
Specifies the popover instance to render.
Accepts a | |
showOn |
|
Specifies the mouse action that triggers the popover to show. See example. |
Methods
hide |
---|
Hides the Popover. See example. |
show | ||||||
---|---|---|---|---|---|---|
Shows the Popover. | ||||||
|
toggle | ||||||
---|---|---|---|---|---|---|
Toggles the visibility of the Popover. See example. | ||||||
|