messages.downArrow String (default: "select")

Specifies the text that will be used for the MultiSelect downArrow title attribute.

Example

<input id="multiselect" style="width: 400px;" />
<script>
    $("#multiselect").kendoMultiSelect({
        dataSource: [
            { id: 1, name: "Apples" },
            { id: 2, name: "Oranges" }
        ],
        dataTextField: "name",
        dataValueField: "id",
        messages: {
            downArrow: "custom!"
        }
    });
</script>
In this article