Hello,
how can I make the clear-value button in the GridSearchBox always visible?
By default, the clear button only appears when the GridSearchBox has a value. I’d like it to always be visible, even when the input is empty.
Thanks
<GridSettings>
<GridPagerSettings InputType="PagerInputType.Input"
PageSizes="@PageSizes"
ButtonCount="5"
Adaptive="true"
Position="PagerPosition.Bottom">
</GridPagerSettings>
</GridSettings>
Hello all,
I am getting the following error upon running deployed blazor app on IIS. When running it from local VS 2022 there are no issues.
<TelerikForm Columns="3" ColumnSpacing="35px" Model="@FormModel">
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?