toolbar.showInactiveToolsBoolean
If set to true, the toolbar will show the inactive tools in a disabled state. Otherwise the tools will be hidden.
Example - show inactive tools in disabled state
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "name" },
{ field: "age" }
],
dataSource: [
{ name: "Jane Doe", age: 30 },
{ name: "John Doe", age: 33 }
],
sortable: true,
filterable: true,
groupable: true,
toolbar: {
items: [
{ name: "sort" },
{ name: "filter" },
{ name: "group" }
],
showInactiveTools: true
}
});
</script>
In this article