Planned
Last Updated: 25 Apr 2023 13:21 by ADMIN
Scheduled for 4.2.0 (04/26/2023)

When I change the field from the dropdown to another field of the same type, the filter editor is not updated.

The issue occurs when I'm using Enum fields - the dropdown editor is not updated to display the correct values of the newly selected Enum field.

Reproduction: https://blazorrepl.telerik.com/QHExPalR55jvaD1t12.

Steps to reproduce:

  1. Select NumberField
  2. The dropdown editor still shows the Color values

 

Completed
Last Updated: 06 Dec 2022 09:38 by ADMIN
Release 4.0.0 (18 Jan 2023) (R1 2023)

Steps to reproduce:

  1. Run this REPL snippet
  2. Click on the Add Expression button
  3. Try to delete the newly added expression.
Unplanned
Last Updated: 02 Nov 2022 09:34 by Adam
Created by: Adam
Comments: 0
Category: Filter
Type: Feature Request
4
We have a large number of fields and it will be useful if we have a search box in the field dropdown to filter them - in a similar fashion to how filtering works in the DropDownList component.
Unplanned
Last Updated: 19 Aug 2022 04:03 by Arash
Created by: Dale
Comments: 1
Category: Filter
Type: Feature Request
3

Can the ability to define a height/width for the Filter component be exposed?

Width - I've noticed that if your Column names are to long names are cut off. I've used CSS to work around this.

Height - This isn't exactly a bug but if you populate enough "<FilterField/>" the dropdownlist will extend down past the bottom of the page.

It would be helpful if we can we can define more settings from the dropdownlists Or atleast make it so the dropdownlist will not go beyond the bottom of the page.

Duplicated
Last Updated: 11 Aug 2022 12:37 by ADMIN
Created by: Rick
Comments: 0
Category: Filter
Type: Feature Request
2

I would like to request an ability to add a dropdown of available values so that a user could select one or more items on the value side.

For Example:

User selects "Room Type" for Filter Name and is presented with "Queen", "King", "Double".  The user would then be able to select one or more of those values. This would replace a multitude of "OR" statements, in additional; it could make finding things easier by knowing what values I can search for.

Possibly apply a "Template" for the value of a Filter Name.  Purely as a concept:

<TelerikFilter Value="@Value" ValueChanged="@OnValueChanged">
    <FilterFields>
        <FilterField Name="@nameof(OrderDetailDto.OrderId)" Type="typeof(int)" Label="Id" />
        <FilterField Name="@nameof(OrderDetailDto.Quantity)" Type="typeof(short)" />
        <FilterField Name="@nameof(OrderDetailDto.OrderFreight)" Type="@typeof(decimal)" Label="Freight" />
        <FilterField Name="@nameof(OrderDetailDto.OrderShipCountry)" Type="typeof(string)" Label="Country">
           <FilterValueTemplate>{{Some Template Here}}</FilterValueTemplate>
        </FilterField>
        <FilterField Name="@nameof(OrderDetailDto.OrderShipName)" Type="typeof(List<string>)" Label="Ship to">
           <FilterValueTemplate>{{Some Template Here}}</FilterValueTemplate>
        </FilterField>
        <FilterField Name="@nameof(OrderDetailDto.OrderShipAddress)" Type="typeof(string)" Label="Ship Address" />
    </FilterFields>
</TelerikFilter>

Unplanned
Last Updated: 06 Jul 2022 18:12 by Víctor
Created by: Jerome
Comments: 1
Category: Filter
Type: Feature Request
19
Is there a way to create a custom template for the FilterField? I would like to create autocomplete/comboboxes for some of the options.
Unplanned
Last Updated: 09 Jun 2022 11:54 by Eric
Created by: Eric
Comments: 0
Category: Filter
Type: Feature Request
2
I would like to have a built-in functionality where the filter string is in a human readable format, rendered, so that my users can see it.
Completed
Last Updated: 16 May 2022 22:05 by ADMIN
Created by: Dale
Comments: 2
Category: Filter
Type: Bug Report
1

If the CompositeFilterDescriptor is set with a predefined filter before the filter component is rendered on the page it locks up the UI.

 

I've noticed this issue if the Filter is user under a TabStrip.. You set the filter and navigate way from the tab and back it will lock up.

Completed
Last Updated: 30 Mar 2022 11:17 by ADMIN
Release 3.2.0
When the Filter is hosted in a Window, and there is a filter expression, closing the window and trying to reopen it again end in an infinite loop
Unplanned
Last Updated: 16 Mar 2022 13:55 by Chris

I would like to limit how many nested groups in the Filter the user can make.

It would be nice to have events raised when filters are added. This will allow me to use my own logic (e.g., to ensure something exists before adding/removing another).