New to Kendo UI for jQueryStart a free 30-day trial

Show

methods

Shows an item.

Parameters:itemsString|jQuery

Collection of the items to show.

<button id="splitbutton" type="button">Button</button>
<script>
    $("#splitbutton").kendoSplitButton({
        items:[
            { id: "item1", text: "Item 1", hidden: true },
            { id: "item2", text: "Item 2" }
        ]
    });
    var button = $("#splitbutton").data("kendoSplitButton");

    button.show($("#item1"));
</script>
Not finding the help you need?
Contact Support