open

Fires when the menu button is opened.

Example

<button id="splitbutton" type="button">Button</button>
<script>
    $("#splitbutton").kendoSplitButton({
        items:[
            { id: "item1", text: "item 1" },
            { id: "item2", text: "item 2" }
        ],
        open: function(e) {
            console.log("Opened!");
        }
    });
</script>
In this article