messages.toolbar.sortFieldString
Defines the text for the sort field dropdown in the toolbar. This message appears as a label for the dropdown that allows users to select which column to sort by (name, size, type, or date). 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: {
sortField: "Sort By"
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article