hi,
I cannot seem to find multi-level support on the listview like shown in the two examples below from a different Blazor
can you please direct me to this feature and usage(if it exists) or give me some hints on how I can Achieve this with this with a combination of existing components
Thanks for your help
Alain
<TelerikUpload SaveUrl="api/v1.0/files/save"
RemoveUrl="api/v1.0/files/remove"
AllowedExtensions="@AllowedFileTypes"
MinFileSize="@MinFileSize"
MaxFileSize="@MaxFileSize"
AutoUpload="true"
Multiple="true"
WithCredentials="false"
OnUpload="@OnUploadHandler"
OnProgress="@OnProgressHandler"/>
I need an EventCallBack for "OnComplete" for a completion of all files or "OnProgress???" for all files. Or a complete different solution.
Is there a way to format the color of TelerikProgressBar based off data?
I see you can set the Class on that item, however it does not apply background-color to the fill of the bar.
I've found that I can modify all bars by setting the following css:
.k-progressbar .k-state-selected {
background-color:green;
}
Thanks!
I like the concept of having a list of values that can be checked to filter. My problem is the list can be really long. Long enough that if you have to use the scroll bar on the page to try to see the remaining entries. However using the scroll bar closes the filter menu.
Is there a way to add a scroll bar to the filter menu list?
Hi,
Is it possible to work FilterMode="Telerik.Blazor.GridFilterMode.FilterMenu" and Sortable="true" together?
Thanks for answer
Peter
I have an EditForm with a TabStrip and multiple tabs each with required fields. I'm finding that validation finds the required fields only on tabs that were active at some point and had their contents loaded into the DOM. If the user never selects the tabs, validation will skip some required fields.
We have a workaround where each tab is quickly activated after the first render but I'm hoping there is a cleaner solution. Is there a way to tell Telerik to load all tabs into the DOM on initialization?