fixedGroupTemplate String|Function
The template used to render the fixed header group. By default the widget displays only the value of the current group.
<select id="customers" style="width: 400px;"></select>
<script>
$(document).ready(function() {
$("#customers").kendoMultiSelect({
placeholder: "Select customers...",
dataTextField: "ContactName",
dataValueField: "CustomerID",
fixedGroupTemplate: "Fixed header: #: data #",
height: 400,
dataSource: {
type: "odata",
transport: {
read: "https://demos.telerik.com/kendo-ui/service/Northwind.svc/Customers"
},
group: { field: "Country" }
}
});
});
</script>