toolbar.overflowObject
Specifies Toolbar.overflow
configuration for the toolbar.
Example - configure toolbar overflow settings
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "name" },
{ field: "age" }
],
dataSource: [
{ name: "Jane Doe", age: 30 },
{ name: "John Doe", age: 33 }
],
toolbar: {
items: [
{ name: "create" },
{ name: "excel" },
{ name: "pdf" },
{ name: "custom1", text: "Action 1" },
{ name: "custom2", text: "Action 2" }
],
overflow: {
mode: "scroll",
scrollButtons: "visible",
scrollButtonsPosition: "split",
scrollDistance: 100
}
},
editable: true
});
</script>
In this article