PopoverContainerDirective
Represents the kendoPopoverContainer
directive.
It is used to filter and target multiple elements, which should display a popover on 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 should display a popover. The possible values include any valid query selector. See example | |
popover |
|
Specifies the popover instance that will be rendered.
Accepts a | |
showOn |
|
The event on which the Popover will be shown The supported values are:
|
Methods
hide |
---|
Hides the Popover (See example). |
show | ||||||
---|---|---|---|---|---|---|
Shows the Popover. | ||||||
|
toggle | ||||||
---|---|---|---|---|---|---|
Toggles the visibility of the Popover. See example | ||||||
|