messages.labelSuffix String

Controls the label suffix that will be concatenated to the button's text and 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"
        }
    });
</script>
In this article