Hy,
On my page I have a hierarchical grid so I can display additional data for each row:
As you can see the height of each line takes up a lot of unnecessary space and only when I resize the screen the height of the line decreases:
Is there a way to set the minimum height by default?
Thanks for help,
Marco
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
Hi Team,
Is there a way to programmatically navigate to selected folder on button click in Filemanager blazor
Hi Team,
I know that we can create a new folder in Blazor FileManager using OnModelInit and OnCreate.
But in my application, I want to have 2 buttons: 1 for New Folder and other for New file.
Is there a way to achieve it?
I have already tried using below code. But I do not get the popup for New File:
<FileManagerToolBarCustomTool><FileManagerToolBarCustomTool>
<TelerikButton OnClick="@OnNewFileClicked">New File</TelerikButton>
</FileManagerToolBarCustomTool>
private void OnNewFileClicked()
{
var item = new HierarchicalFileEntry();
item.Name = $"New file";
item.Size = 0;
item.Extension = ".json";
item.Path = Path.Combine(DirectoryPath, item.Name);
item.IsDirectory = false;
item.HasDirectories = false;
}
Hi Team,
I want to remove some options (like Date created, Date Modified, Size) of Sort By in Toolbar of File Manager in Blazor but I am unable to do it. Can you please help.
Hi team,
How can I add StopPropogation for ToolBarButton to prevent it from calling the parent div event.
Hi,
I'm wondering if there is any plan to implement a URL as an option for loading in a PDF. I want to be able to display PDFs that are hosted in a sharepoint drive by URL without having to download a PDF into memory every time. I know there are viewers that can do this, but I'm just wondering if I'm missing something with Telerik, or if I need to go with a different solution.
Thanks,
Nathan