messages Object

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

Example

<button id="dropdownbutton" type="button">Cancel</button>
<script>
    $("#dropdownbutton").kendoDropDownButton({
        items:[
            { text: "item 1" },
            { text: "item 2" }
        ],
        messages: {
            labelSuffix: "Button"
        }
    });
</script>
In this article