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

Messages

configuration

Allows localization of the strings that are used in the widget.

messages

Object
<button id="splitbutton" type="button">Cancel</button>
<script>
    $("#splitbutton").kendoSplitButton({
        items:[
            { text: "item 1" },
            { text: "item 2" }
        ],
        messages: {
            labelSuffix: "Button"
        }
    });
</script>

Controls the label suffix that will be concatenated to the button's text and used for the aria-label attribute.

<button id="splitbutton" type="button">Cancel</button>
<script>
    $("#splitbutton").kendoSplitButton({
        items:[
            { text: "item 1" },
            { text: "item 2" }
        ],
        messages: {
            labelSuffix: "MenuButton"
        }
    });
</script>
In this article
messagesmessages.labelSuffix
Not finding the help you need?
Contact Support