New to Telerik UI for ASP.NET CoreStart a free 30-day trial

Data Binding Overview

Under the hood, the FileManager formats the responses as FileManagerEntry abstractions, which are a transmutation of the FileManagerDataSource schema.

To ensure that the FileManager component processes the files successfully, each of the binding methods that you use must format the responses by using the FileManagerEntry abstraction.

FileManagerEntry
    public class FileManagerEntry
    {
        public string Name { get; set; }
        public long Size { get; set; }
        public string Path { get; set; }
        public string Extension { get; set; }
        public bool IsDirectory { get; set; }
        public bool HasDirectories { get; set; }

        public DateTime Created { get; set; }
        public DateTime CreatedUtc { get; set; }
        public DateTime Modified { get; set; }
        public DateTime ModifiedUtc { get; set; }
    }

For more information and examples about the data-binding scenarios, see the following articles:

See Also

​​

In this article
See Also
Not finding the help you need?
Contact Support