Hy All,
Is it possible to use FileManager only by code behind razor page without display a region?
For example I have tried with this code:
FileManager = new SfFileManager();
FileManager.AjaxSettings = new FileManagerAjaxSettings();
FileManager.AjaxSettings.Url = "/api/FileManager/FileOperations";
FileManager.AjaxSettings.DownloadUrl = "/api/FileManager/Download";
FileManager.SelectedItems = new string[] { fileName };
FileManager.DownloadFiles(fileName);
but the methods of the controller listen at above Url are not called.
thanks a lot,
Rolando Tonin