messages.labelSuffix String

Controls the label suffix that will be used for the aria-label attribute.

Example

<button id="dropdownbutton" type="button">Cancel</button>
<script>
    $("#dropdownbutton").kendoDropDownButton({
        items:[
            { text: "item 1" },
            { text: "item 2" }
        ],
        messages: {
            labelSuffix: "MenuButton" // inspect the aria-label attribute in the browser console
        }
    });
</script>
In this article