toolbar.overflow.modeString(default: "menu")
Defines the overflow mode. The available options are:
"menu"— Moves overflowing items into a dropdown menu."scroll"— Keeps items visible and enables horizontal scrolling."section"— Groups items into collapsible sections."none"— Disables overflow handling; items may be cut off.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
toolbar: {
items: [
{ name: "search" },
{ name: "sort" },
{ name: "group" }
],
overflow: {
mode: "scroll"
}
},
model: {
foo: "bar",
baz: 5
}
});
</script>