messages.toolbar.sortDirectionDescString

Defines the text for the descending sort direction option in the toolbar dropdown. This message appears as an option in the sort direction dropdown menu, allowing users to sort files and folders in descending order. It provides localization support for different languages and allows customization of the user interface text.

Example

<div id="fileManager"></div>
<script>
    var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";

    $("#fileManager").kendoFileManager({
        messages: {
            toolbar: {
                sortDirectionDesc: "Sort Descending"
            }
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>