Hi team,
We are currently using Telerik grids for our data, with fluent theme. We were able to change most of the css for that grid, as per our requirement.
However, we were unable to replace the filter-icon.svg with ours.
I looked into other posts in this forum, and in one post from 2020 they suggested changing the css or going through the template. But we were unable to replicate the work.
Is there any direct implementation now, to replace these icons or any other workaround ?
Hello,
Does the Blazor Tabstrip support drag to reorder? I see the Telerik UI for ASP.NET AJAX supports it. This is what I need.
Thanks,
Scott
I want to preserve new lines upon pasting content in the TelerikEditor component, which had been copied from a PDF file. Example:
Copying this snippet from the pdf and pasting it onto the TelerikEditor results in:
1. Previous case law and legal principles 2. Statutes 3. Society's values 4. Customs and Course of dealings
Is it possible to preserve formatting of content copied from a PDF?
Hi everyone!
Ir is possible add thousands separator in the total of items in the GridColumn
Hi everyone!
I hace this Rowfilter
This is the Telerik Code
<GridColumn FilterMenuType="@FilterMenuType.Menu" Field="@nameof(HechoDirectoClienteViewModel.FechaVencimiento)" Title="Fecha vencimiento" TextAlign="ColumnTextAlign.Right" Resizable="true" Sortable="true" Width="170px" HeaderClass="center-wrap">
<Template>
@((context as HechoDirectoClienteViewModel)?.FechaVencimiento?.ToString("dd/MM/yyyy"))
</Template>
</GridColumn>
I tried to figure out how to use different Item Templates within a Listview but I failed.
is it not possible ?
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.