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?
@rendermode="new InteractiveWebAssemblyRenderMode(prerender: true)
<TelerikButton OnClick="@OpenWindow">Open Window</TelerikButton>
<TelerikWindow @ref="WindowRef" @bind-Visible="@WindowVisible">
<WindowTitle>
Window Title
</WindowTitle>
<WindowActions>
<WindowAction Name="Close" />
</WindowActions>
<WindowContent>
<p role="status">Current count: @CurrentCount</p>
<TelerikButton OnClick="IncrementCount">Increment Count</TelerikButton>
</WindowContent>
</TelerikWindow>
@code {
private TelerikWindow? WindowRef { get; set; }
private bool WindowVisible { get; set; }
private int CurrentCount { get; set; }
private void IncrementCount()
{
CurrentCount++;
WindowRef?.Refresh();
}
private void OpenWindow()
{
WindowVisible = true;
}
}
I have a scenario where I need to shift the position of TelerikTextBox's `k-input-inner` element using the CSS properties`top` and `left`. This works fine until I use FocusAsync() to programmatically focus on the textbox. This causes the textbox to reset its position and disregard the position styling.
Please see the REPL link below. To reproduce, click on the "Focus" button and observe how the placeholder shifts.
https://blazorrepl.telerik.com/wTkelobC56YIRoZL13
To note, the desired view is with the input text position shifted from the original position like so:
Hitting tab reverts it to the original positioning which is undesirable:
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?
Hy,
I'm using a hierarchical drawer following the example: Blazor Drawer Demos - Hierarchical Drawer | Telerik UI for Blazor
If I activate the mini mode the hierarchical drawer appears as follows:
Is there something in the component where the drawer in mini mode displays all the items of the next levels in a popup that opens and closes when the cursor goes over the item at level 0?
As the picture below
Thanks
Hi Team,
Is there a way to show no files or folder found message when the root folder is empty in FileManager?
Is there a way to display items in under groups in the listbox. like a treeview or regular grid?
Thanks
Eric
I just want to add drag and drop items in a ListView to reorder them.
I don't think adding any code or files here will help.
I'm having some trouble with the TelerikTabStrip component. The following snippet should reproduce my issue:
<TelerikTabStrip @bind-ActiveTabIndex="@activeTabIdx">
@{
foreach (var tab in Tabs)
{
<TabStripTab Title=@tab.Key></TabStripTab>
}
}
</TelerikTabStrip>
@code {
public Dictionary<string, string> Tabs { get; set; }
public int activeTabIdx { get; set; } = 0;
protected override void OnInitialized()
{
Tabs = new Dictionary<string, string>();
Tabs.Add("1", "1");
Tabs.Add("2", "2");
Tabs.Add("3", "3");
Tabs.Add("4", "4");
}
protected override void OnParametersSet()
{
}
Currently, whenever I change a tab, although activeTabIdx is updated, the previous tab remains highlighted along with the currently selected one and so on, i.e, the previous tab highlight does not disappear indicating it had beeen deselected. Has anyone incurred to a similar problem?
Thank you