<kendo:dropDownTree-checkboxes>
If true or an object, renders checkboxes beside each node. In this case the widget value should be an array.
Example
<kendo:dropDownTree>
<kendo:dropDownTree-checkboxes></kendo:dropDownTree-checkboxes>
</kendo:dropDownTree>
Configuration Attributes
checkChildren boolean
Indicates whether checkboxes of child items should get checked when the checkbox of a parent item is checked. This also enables tri-state checkboxes with an indeterminate state.
Example
<kendo:dropDownTree-checkboxes checkChildren="checkChildren">
</kendo:dropDownTree-checkboxes>
name java.lang.String
Sets the name attribute of the checkbox inputs. That name will be posted to the server.
Example
<kendo:dropDownTree-checkboxes name="name">
</kendo:dropDownTree-checkboxes>
template java.lang.String
The template which renders the checkboxes. Can be used to allow posting of additional information along the TreeView checkboxes.The fields which can be used in the template are: item - the data item of the given node or treeview - the TreeView options.
Example
<kendo:dropDownTree-checkboxes template="template">
</kendo:dropDownTree-checkboxes>
Event Attributes
template String
The template which renders the checkboxes. Can be used to allow posting of additional information along the TreeView checkboxes.The fields which can be used in the template are: item - the data item of the given node or treeview - the TreeView options.
Example
<kendo:dropDownTree-checkboxes template="handle_template">
</kendo:dropDownTree-checkboxes>
<script>
function handle_template(e) {
// Code to handle the template event.
}
</script>
Event Tags
kendo:dropDownTree-checkboxes-template
The template which renders the checkboxes. Can be used to allow posting of additional information along the TreeView checkboxes.The fields which can be used in the template are: item - the data item of the given node or treeview - the TreeView options.
Example
<kendo:dropDownTree-checkboxes>
<kendo:dropDownTree-checkboxes-template>
<script>
function(e) {
// Code to handle the template event.
}
</script>
</kendo:dropDownTree-checkboxes-template>
</kendo:dropDownTree-checkboxes>