messages.toolbar.dateCreatedFieldString
Defines the text for the date created 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 creation 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: {
dateCreatedField: "Date Created"
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article