TelerikGrid Filtering does not display proper value in drop-down

1 Answer 56 Views
Grid
Kishan
Top achievements
Rank 1
Iron
Kishan asked on 12 Jan 2022, 12:55 PM

Hello there 

I am using Telerik Filtering,

here is my code snippet

<TelerikGrid Data="@UsersSource" Height="400px"
                                 Pageable="true" PageSize="PaginationHelpers.PageSize"
                                 FilterMode="GridFilterMode.FilterRow"
                                 Resizable="true" Reorderable="true"
                                 OnRowClick="@OnRowClickHandler"
                                 SelectionMode="@GridSelectionMode.Multiple"
                                 @bind-SelectedItems="@SelectedUsers">
                        <GridColumns>
                            <GridCheckboxColumn />
                            <GridColumn Field="@(nameof(User.Name))" Title="@_translator["NameLabel"]" />
                            <GridColumn Field="@(nameof(User.Username))" Title="@_translator["UserNameLabel"]" />
                            <GridColumn Field="@(nameof(User.BirthDate))" Title="@_translator["DateOfBirthLabel"]" DisplayFormat="{0: MM/dd/yyyy}" />
                            <GridColumn Field="@(nameof(User.Role))" Title="@_translator["RoleLabel"]" />
                        </GridColumns>
                    </TelerikGrid>

but this does not show the proper  value in Filetering drop-down, it's show like this 

instead of

 

1 Answer, 1 is accepted

Sort by
1
Accepted
Marin Bratanov
Telerik team
answered on 15 Jan 2022, 03:44 PM

Hello,

This is a duplicate of https://www.telerik.com/forums/telerikgrid-filtering-does-not-display-proper-value-in-drop-down

I recommend opening one thread for an issue you are facing, as this keeps all information in the same place.

 

Regards,
Marin Bratanov
Progress Telerik

Learn about the important changes coming in UI for Blazor 3.0 in January 2022!
Tags
Grid
Asked by
Kishan
Top achievements
Rank 1
Iron
Answers by
Marin Bratanov
Telerik team
Share this question
or