Is there a way to customize the telerik filemanager?
I need to hide the navigation pane (directories), the breadcrumbs and also customize the toolbar. (remove "Search", "New Folder," "Sort By", "Sort Order", and "View")
Currently I am able to Hide the nav panel and the breadcrumbs through CSS, but the splitter is still forcing the content pane to be sized as though it is present..
I would also like to be able to select the grid as the default (and only) view available
Any help would be appreciated.
Hey!
Atm I'm trying to override the styling of the Telerik TextBox. It currently looks like this;
Im using a light theme and trying to change the border of the inner input of the TextBox.
All i change doesn't seem to work. I tried stuff like this :
/*.k-textbox:focus, .k-textbox:active{
border-color: transparent;
border: none;
}
.k-textbox-container, .k-textbox-container:active{
border-color:transparent;
border:none;
}
.k-input:focus, .k-input:active{
border-color: none;
border: none;
}*/
But I can't find a proper documentation for the inner styling of the TextBox input. All I want to change is the visibility of the input border.
Thanks for reading this post.
Phil
Started building my first app with Blazor Grid and running into some issues. Have several columns that need dropdownlist to display text instead of underlying number (eg select and display "Operations Department" instead of value of 3)
The grid will not sort based on the Display Text but does so instead based on value. Same when trying to group using the field. Sort by the value in groups (and I see no way to change the sort order from ascending to descending on the groups too).
Hi, I need to identify browser in Blazor, How can I do it?
Could you help me please?
Peter
Hi,
I'm trying to display the Gantt component as read-only. While it's easy to disable editing for the TreeList that's part of the Gantt component, I can't seem to disable editing of tasks through the timeline. There are 3 things that I'm trying to resolve.
1. How to disable the popup editor when double clicking a task in the timeline?
Only thing I can come up with is hide the popup editor through a css class with 'display: none':
<GanttSettings>
<GanttPopupEditSettings Class="d-none" />
</GanttSettings>
2. How to disable dragging of the tasks on the timeline?
I can't seem to find a way to lock the tasks in place. I can always drag them.
I'm aware I can set the start and end values of the task back to the original value after dragging (through OnUpdate), but I don't want to be able to drag them in the first place.
3. How to hide specific editing buttons on the task in the timeline?
When hovering over a task in the timeline it always shows a number of handles or buttons for the following actions (circled in red in the below screenshot):
- change the completion percentage.
- specify new dependencies
- delete the task
How can the handles and buttons for these actions be disabled/hidden?
Kind Regards
1. How can I force sorting it by number and not string?
2. When sorting, can I force one of the row to always be at the bottom? (i.e. if one of the cells includes 'Total' text)
Hi, the standard Blazor programming docs recommend using the @key marker with components that are generated in a loop at runtime, which would be the Grid, TreeList, etc., however, I have not seen this @key marker used in any of the Telerik Blazor demos or sample code. Is setting of the @key marker done automatically by Telerik Blazor for the Grid, TreeList, etc., or is that something we should be doing somehow as we write apps using these components?
Optimising using @key – Blazor University (blazor-university.com)
How can I avoid this from happening?