<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>
iconClass java.lang.String
The CSS class that will be used to display the icon 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>
iconClass String
The CSS class that will be used to display the icon inside the button
Example
<kendo:popover-action iconClass="handle_iconClass">
</kendo:popover-action>
<script>
function handle_iconClass(e) {
// Code to handle the iconClass 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>
kendo:popover-action-iconClass
The CSS class that will be used to display the icon inside the button
Example
<kendo:popover-action>
<kendo:popover-action-iconClass>
<script>
function(e) {
// Code to handle the iconClass event.
}
</script>
</kendo:popover-action-iconClass>
</kendo:popover-action>