Hello,
We are using blazor Webassembly with Telerik and its localization/globalization. Everything works fine.
Client ask us a little detail, to "translate" the mask format for date input ( TelerikDatePicker, ... ).
For example, if we use the french culture "fr-BE"we would like to transform "dd/MM/yyyy" to "jj/MM/aaaa" (day => jour; Month => Mois; year => année) or something similar. In Telerik UI for Angular, we have it translated =>
How can we achieve that for Telerik UI for Blazor ?
Kind regards,
Quentin.
Hello! I want to create a Blazor WebAssembly application with the following program structure: When clicking on menu items, I'd like tabs to be generated with the displayed Page Name and a close button in the tab header, and the page content displayed in the tab body. How should I structure this?
Hello,
I have encountered a strange bug regarding FilterDescriptor based on an Enum value.
We get an automatic conversion from int32 to int16 as soon as the filter for enum is set and then the culture of a program has been changed. For example from english to german.
After the culture has been changed, the enum filter that was previously set on TelerikGrid throws a cast exception as soon as we try to open it.
We have fixed the problem by manually converting back from short to int, since we don't use short in our filter. However it would be great if the bug could be patched :)
Hi,
I saw that this feature https://feedback.telerik.com/blazor/1561874-filter-value-template is in status Completed and Release 2024 Q2 (May) .
I did update the Telerik library but still the
<ValueTemplate> is not recognized from visual studio.
I saw the example with :
@using Telerik.DataSource
@using Telerik.DataSource.Extensions
<TelerikFilter Value="@FilterValue" ValueChanged="@OnValueChanged">
<FilterFields>
<FilterField Name="@(nameof(Food.Id))" Type="@(typeof(int))" Label="Id" />
<FilterField Name="@(nameof(Food.Name))" Type="@(typeof(string))" Label="Name">
<ValueTemplate>
<TelerikAutoComplete Data="@Suggestions"
Value="@((string)context.FilterDescriptor.Value)"
ValueChanged="@((string value) => OnFilterValueChanged(context.FilterDescriptor, value))">
</TelerikAutoComplete>
</ValueTemplate>
</FilterField>
<FilterField Name="@(nameof(Food.Price))" Type="@(typeof(decimal))" Label="Price">
<ValueTemplate>
<TelerikNumericTextBox Value="@((decimal?)context.FilterDescriptor.Value)"
Format="C"
Step="0.01m"
ValueChanged="@( (decimal? value) => NumericValueChanged(context.FilterDescriptor, value) )">
</TelerikNumericTextBox>
</ValueTemplate>
</FilterField>
<FilterField Name="@(nameof(Food.IsAvailable))" Type="@(typeof(bool))" Label="Is Available" />
</FilterFields>
</TelerikFilter>
In my scenario I want to add a Dropdown as ValueTemplate. I have the Telerik.UI.for.Blazor version 6.0.2. Is the ValuteTemplate included in this version?
Thanks in advance.
I loaded the demos Blaxor app and I am getting all kinds of errors because the Telerik packages do not exist. They don't exist on Nuget.org (the Trial versions) and the app has no reference to any Telerik feed server. I expected that a package feed server to be defined. I want to load the project and run and expect it to run and not spend over an hour trying to fix stuff! The packages exist in my more than one folder and I don't understand why they are not centralized in one folder.
The Microsoft packages reference 8.0.0 instead of the latest. Azure.Identity is referencing 1.11 and for some reason Visual Studio is refusing to load it. It's showing a moderate vulnerability so I upgraded to 1.12. It makes feel the demos haven't been upgraded in months.
Now I am getting these errors and it's not clear why.
(insert image in this text editor doesn't support inserting an image from my computer. Forcing me to enter a tag. Can't find demos tag, Not friendly UX)
Hi,
I use TelerikMaskedTextBox with IncludeLiterals, but the value is always padded with spaces to the mask's length. Is there a way to trim the value? For example, if I have a partially filled phone mask, I can't determine whether it is valid based on the length. Also, when stored in the database, having those spaces can be an issue when used by another method in the application.
Thanks,
The FileManager breadcrumb links for previous folders don't seem to work like I would expect. Instead of opening the folder that was clicked on, it appears that the breadcrumb link leads to "#".
Is there some kind of configuration that I'm missing?
I attached my example source code which the issue. Please help to take a look and advise!
Thank you so much for your help!