messages.toolbar.nameFieldString
Defines the text for the name field option in the sort field dropdown. This message appears as an option in the sort field dropdown menu, allowing users to sort files and folders by their name. 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: {
nameField: "Name"
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article