<kendo:buttonGroup>
A JSP wrapper for Kendo UI ButtonGroup.
Configuration Attributes
enable boolean
Defines if the widget is initially enabled or disabled. By default, it is enabled.
Example
<kendo:buttonGroup enable="enable">
</kendo:buttonGroup>
index float
Defines the initially selected Button (zero based index).
Example
<kendo:buttonGroup index="index">
</kendo:buttonGroup>
selection java.lang.String
Defines the selection type. Allows the following values: single (default): allows only a single button to be the currently selected in the group.; multiple: allows multiple buttons to be selected in the group at the same time. or none: does not allow selection. ButtonGroups acts as a group f clickable Buttons..
Example
<kendo:buttonGroup selection="selection">
</kendo:buttonGroup>
Configuration JSP Tags
kendo:buttonGroup-items
A JavaScript array that contains the ButtonGroup's items configuration.
More documentation is available at kendo:buttonGroup-items.
Example
<kendo:buttonGroup>
<kendo:buttonGroup-items></kendo:buttonGroup-items>
</kendo:buttonGroup>
Event Attributes
select String
Fires when a Button is selected.
For additional information check the select event documentation.
Example
<kendo:buttonGroup select="handle_select">
</kendo:buttonGroup>
<script>
function handle_select(e) {
// Code to handle the select event.
}
</script>
Event Tags
kendo:buttonGroup-select
Fires when a Button is selected.
For additional information check the select event documentation.
Example
<kendo:buttonGroup>
<kendo:buttonGroup-select>
<script>
function(e) {
// Code to handle the select event.
}
</script>
</kendo:buttonGroup-select>
</kendo:buttonGroup>