Hello Kedarnath,
You could check the following approach for displaying initial files in the widget:
http://demos.telerik.com/aspnet-mvc/upload/initialfiles
Nevertheless it does not rely on the actual files, but on metadata provided by the developer in an array.
E.g.
.Files(files =>
{
foreach (
var
f
in
Model)
{
files.Add().Name(f.Name).Extension(f.Extension).Size(f.Size);
}
})
Dimiter Madjarov
Telerik by Progress
Get started with Kendo UI in days. Online training courses help you quickly implement components into your apps.