Telerik Forums
UI for Blazor Forum
1 answer
123 views

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 ?

Nadezhda Tacheva
Telerik team
 answered on 15 Jul 2024
1 answer
87 views

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

Tsvetomir
Telerik team
 answered on 15 Jul 2024
0 answers
54 views

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?

 

Ricardo
Top achievements
Rank 1
Iron
 updated question on 12 Jul 2024
1 answer
83 views

Hi everyone!

Ir is possible add thousands separator in the total of items in the GridColumn

 

Tsvetomir
Telerik team
 answered on 12 Jul 2024
1 answer
90 views

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>
It is possible changue the DateFormat "y/M/yyyy" to this "dd/MM/yyyy?
Tsvetomir
Telerik team
 answered on 12 Jul 2024
1 answer
48 views

I tried to figure out how to use different Item Templates within a Listview but I failed.

is it not possible ?

Dimo
Telerik team
 answered on 11 Jul 2024
2 answers
64 views

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.

Quentin
Top achievements
Rank 1
Iron
 answered on 11 Jul 2024
1 answer
73 views

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?

  1. Menu
  2. Tab header - Display of the clicked Page Name and a close button
  3. Tab body - Display of Page Content

Hristian Stefanov
Telerik team
 answered on 11 Jul 2024
0 answers
62 views

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 :)

Tadas
Top achievements
Rank 1
 asked on 09 Jul 2024
0 answers
105 views

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.

                                                      
Sua
Top achievements
Rank 1
 asked on 08 Jul 2024
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?