Telerik Forums
UI for Blazor Forum
0 answers
39 views

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?

Tasnim
Top achievements
Rank 1
Iron
Iron
 asked on 16 Apr 2025
0 answers
39 views

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?

Tasnim
Top achievements
Rank 1
Iron
Iron
 updated question on 16 Apr 2025
2 answers
61 views


Hi,
I'm developing a Blazor web app with:
- .NET9,
- rendering
@rendermode="new InteractiveWebAssemblyRenderMode(prerender: true)


I would like to show data starting from the selected record in a grid in a telerik window, where starting from this data I would populate various fields in a chain.
This data could be modified inside the telerik window and saved using a button.
This use is possible but there is a problem to solve: if I modify the data in the telerik window and then close it, the modified data is maintained if I reopen the telerik window.

I'll give an example:
This is the code available in the telerik Blazor guides:
<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;
    }
}

If
- I open the telerik window and increase the counter to 5
- I close the window
- I click on the button again, the window does not show me the count at 0 but at 5.

I would like to know if there is a simple way to recreate from scratch the telerik window every time it is called, without keeping the previous state.

P.S.
I would not want to worry about manually resetting the fields every time I open the telerik window

Thanks
Stefano
Top achievements
Rank 1
Iron
 answered on 16 Apr 2025
1 answer
42 views

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:

Tsvetomir
Telerik team
 answered on 15 Apr 2025
1 answer
50 views

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?

Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
 answered on 14 Apr 2025
1 answer
78 views

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

Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
 answered on 13 Apr 2025
1 answer
52 views

Hi Team,

Is there a way to show no files or folder found message when the root folder is empty in FileManager?

Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
 answered on 13 Apr 2025
1 answer
28 views

Is there a way to display items in under groups in the listbox.  like a treeview or regular grid?

 

Thanks

Eric

Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
 answered on 13 Apr 2025
3 answers
100 views

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.

Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
 answered on 11 Apr 2025
1 answer
66 views

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

Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
 answered on 11 Apr 2025
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?