The AllowedExtensions configuration for the Upload in the FileManager is not exposed and allowed extensions cannot be configured.
The following configuration for the Upload in a FileManaget is not supported:
@(Html.Kendo().FileManager().Name("filemanager")
.Upload(upld=>upld.Validation(val=>val.AllowedExtensions(new string[] { ".doc" , ".jpg" })))
)
while it is available in a standalone Upload component:
@(Html.Kendo().Upload()
.Name("files")
.Validation(validation => validation.AllowedExtensions(new string[] { ".pdf" }))
)
The allowed extensions should be configurable in the FileManager