Hi Team,
Steps:
1. Click on New folder and create a new folder with name "ABC" (OnCreateHandler method is called to which is attached to OnCreate event)
2. Right click on folder "ABC" and click on rename and rename it as "XYZ"
3. On enter click, it retains the old folder "ABC" and creates a new folder with name "XYZ". (Again OnCreateHandler method is called instead of OnUpdateHandler)
Can you please help me understand if it is a bug with FileManager or is something wrong at my end.
<TelerikFileManager @ref="FileManagerRef"
Data="@FileManagerData"
@bind-Path="@DirectoryPath"
IdField="MyModelId"
Height="400px"
NameField="Name"
PathField="Path"
ExtensionField="Extension"
IsDirectoryField="IsDirectory"
HasDirectoriesField="HasDirectories"
DirectoriesField="MyDirectories"
ItemsField="Items"
SelectedItems="@SelectedItems"
SelectedItemsChanged="@((IEnumerable<HierarchicalFileEntry> selectedFiles) => OnSelect(selectedFiles))"
OnCreate="@OnCreateHandler"
OnUpdate="@OnUpdateHandler"
OnDelete="@OnDeleteHandler" />
Hi Team,
For nested folders with the same name, clicking on any folder redirects to the main folder with the same name FileManager
For eg.: I have folder path: "C:AppName/Storage/FileStorage/Test/Test/Test/Test/Test/Test"
Now if I click on second last folder with name "Test" from breadcrumb, it redirects to the first folder with name "Test".
Can you help me with this?
Hi Team,
Breadcrumb does not display full path if the path is too long FileManager
For eg.: My path is "C:/AppName/Storage/FileStorage/New folder/New folder/New folder/New folder/New folder"
But breadcrumb only displays: "C:/AppName/Storage/FileStorage/New folder/New folder/New folder"
Is it because there is no space to show the complete path?
I have debug my code and checked, the path of FileManager is correct. What may be the issue here?
Hi Team,
I don't want to show filename extension while showing file in FileView. Can we do it?
Is it mandatory to give "ExtensionField" in FileManager?
Hi Team,
Is there a way to show no files or folder found message when the root folder is empty in FileManager?
Hi Team,
In my application, on page initialization I have to set the default path for FileManager (It can be any nested path in the root folder depending on the selection from user). After setting the path on OnInitialized, it opens the relevant path but the breadcrumb does not show the complete path.
My path is: Home/FileStorage/Folder2
Current:
Expected:
My code:
<TelerikFileManager @ref="FileManagerRef"
Data="@FileManagerData"
Path="@DirectoryPath"
Height="400px"
NameField="Name"
PathField="Path"
ExtensionField="Extension"
IsDirectoryField="IsDirectory"
HasDirectoriesField="HasDirectories"
DirectoriesField="MyDirectories"
ItemsField="Items"
SelectedItems="@SelectedItems"
SelectedItemsChanged="@((IEnumerable<HierarchicalFileEntry> selectedFiles) => OnSelect(selectedFiles))"
OnModelInit="@OnModelInitHandler"
OnCreate="@OnCreateHandler"
PathChanged="@OnPathChanged" />
protected override void OnInitialized()
{
DirectoryPath = "Home/FileStorage/Folder2"
}
Hi Team,
Currently I can only search files in the current selected folder.
But is there a way to search any file in the nested folders of selected folder in FileManager blazor?
Hi Team,
How to show a pre-selected item in FileManager Blazor when the page loads
I have tried using two-way selection but it does not work.
Hi Team,
Is there a way to remove download option from Context menu of FileManager Blazor
Hi Team,
How can I remove download option from Context menu of FileManager Blazor