<kendo:popover-action>
An array of the action buttons
Example
<kendo:popover-actions>
<kendo:popover-action></kendo:popover-action>
</kendo:popover-actions>
Configuration Attributes
click java.lang.String
A handler function to be called when the action button is clicked
Example
<kendo:popover-action click="click">
</kendo:popover-action>
icon java.lang.String
The name of the icon to display inside the button.
Example
<kendo:popover-action icon="icon">
</kendo:popover-action>
iconClass java.lang.String
The CSS class that will be added to the icon element inside the button.
Example
<kendo:popover-action iconClass="iconClass">
</kendo:popover-action>
text java.lang.String
The text displayed in the action button
Example
<kendo:popover-action text="text">
</kendo:popover-action>
Event Attributes
click String
A handler function to be called when the action button is clicked
Example
<kendo:popover-action click="handle_click">
</kendo:popover-action>
<script>
function handle_click(e) {
// Code to handle the click event.
}
</script>
Event Tags
kendo:popover-action-click
A handler function to be called when the action button is clicked
Example
<kendo:popover-action>
<kendo:popover-action-click>
<script>
function(e) {
// Code to handle the click event.
}
</script>
</kendo:popover-action-click>
</kendo:popover-action>