showArrowButtonBoolean(default: false)
Configures the DropDownButton to render a down arrow that opens and closes its popup.
Example
<button id="dropdownbutton" type="button">Foo</button> <script> $("#dropdownbutton").kendoDropDownButton({ items:[ { text: "item 1" }, { text: "item 2" } ], showArrowButton: true }); </script> In this article