messages.toolbar.sortDirectionAscString

Defines the text for the ascending 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 ascending 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: {
                sortDirectionAsc: "Sort Ascending"
            }
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>