arrowIcon String (default: 'caret-alt-down')

The icon rendered for the arrow button of the SplitButton.

Example

<button id="splitbutton" type="button">Foo</button>
<script>
$("#splitbutton").kendoSplitButton({
    items:[
        { text: "item 1" },
        { text: "item 2" }
    ],
    arrowIcon: "caret-alt-up"
});
</script>
In this article