Unplanned
Last Updated: 22 May 2020 14:09 by ADMIN

Feature Request:

At present, the fields.editorTemplate option of the Filter widget is exposed to modify and customize the editor widget for the value.

However, the DropDownList widgets for the fields and operators cannot be modified via the exposed configuration. For instance to add the Search(filter) functionality

 

Completed
Last Updated: 04 Dec 2019 14:59 by ADMIN
Release R1 2020
Created by: Mat
Comments: 1
Category: Filter
Type: Feature Request
3

Hi Team,

When a date filter is applied in the new Filter widget, the preview looks like: "Date Is After 'Tue Jan 01 2019 00:00:00 GMT+0000 (Greenwich Mean Time)'" -- I'd like to be able to customize the displayed date format, something like adding "format:"{0:dd/MM/yyyy}" to the 'fields' object.

Thanks

Unplanned
Last Updated: 28 Jan 2021 21:44 by Zac
Created by: Mat
Comments: 1
Category: Filter
Type: Feature Request
3

Hi,

I notice you have added support for specifying the format of expressionPreview fields, which is great when handling dates and numbers, so thanks for that.

However, ideally I need to be able to use a template for the expression preview for certain fields. For example, take the scenario where you are filtering for 'user_id'. Currently I'm using a custom editor to present a drop-down list of user names to pass the user_id to the filter, which works well, but the expression preview looks like:

User Equals '132'

rather than:

User Equals 'Fred Bloggs'

If I could use a template for the expression preview, I could use a function to display the name associated with the user_id.

This is just one example: there are many others where a template would be useful in the Filter Panel expression preview.

Unplanned
Last Updated: 12 Feb 2021 09:33 by ADMIN
Created by: Zac
Comments: 3
Category: Filter
Type: Feature Request
3

We'd really like to see expanded support for enums in the Filter control.  Two main components to this request would be:

  • Showing the selected enum option's name instead of the underlying value on expressionPreview ('Open' instead of '0', 'Closed' instead of '1', etc)
  • Automatic select list of enum options (showing the enum names) as the default editor type (the same as how the Grid component's built-in filtering works)

Thank you!

Unplanned
Last Updated: 12 Oct 2021 11:20 by ADMIN
Created by: Christian
Comments: 0
Category: Filter
Type: Feature Request
3
Include "between" operator option for the Filter widget. It makes sense to have such operator for numeric and date fields.
Unplanned
Last Updated: 04 Jul 2022 08:58 by ADMIN
Created by: Kevin
Comments: 1
Category: Filter
Type: Feature Request
3

Hi Team,

I'd like to request adding a format configuration for the Kendo UI Filter for Date fields. 

Thank you!

Completed
Last Updated: 04 Dec 2019 15:00 by ADMIN
Release R1 2020
Created by: Mat
Comments: 0
Category: Filter
Type: Feature Request
2

There are occasions when the out-of-the-box filter operators can't be used, such as filtering on nested objects. In these situations I use a custom function for the filter operator.

It would be great if the Filter widget could support custom filter operators.

I realise this would be challenging, as it would break the save/load state function and would be difficult to handle in the expressionPreview.

Unplanned
Last Updated: 21 Jul 2020 15:20 by ADMIN

I implemented the filter you can find on the documentation page. Let's say that the filter consists of a few fields and three of them are:

  • "First Name",
  • "Second Name" and
  • "Last Name".

I want to have a filter named "Name" and be able to search all three items - instead of having three different filters. I have read the documentation but it does not seem to be any reference to it. I thought of something like the following might be possible:

fields: [
    logic: "or",
    { name: "firstName",  type: "string", label: "Name" },
    { name: "middleName", type: "string", label: "Name" },
    { name: "lastName",   type: "string", label: "Name" }
]

 

Any workaround would be much appreciated.

Unplanned
Last Updated: 04 Jan 2023 16:06 by Vishwas
Created by: Vishwas
Comments: 0
Category: Filter
Type: Feature Request
1

Hi Team, 

I would like to request for the close button to have a built-in close event and a confirm configuration to help prevent accidentally removals of expressions. 

Thank you!

Unplanned
Last Updated: 01 Aug 2023 16:08 by Spyros
Created by: Spyros
Comments: 0
Category: Filter
Type: Feature Request
1

Hi Team,

I would like to request the functionality to replace the Field selector with another component.  For example, in my scenario, it would be beneficial to replace it with a Kendo UI DropDownTree.  

Thank you!

Unplanned
Last Updated: 27 Feb 2024 14:59 by David
Created by: David
Comments: 1
Category: Filter
Type: Feature Request
1
Expose built-in options for altering the appearance of the Apply Button. Such as - icons, content and sizing options.
Unplanned
Last Updated: 04 Nov 2022 11:51 by ADMIN
Created by: Mat
Comments: 1
Category: Filter
Type: Feature Request
0

Hi,

I've noticed (though it's not documented) that if the fields array of the Filter widget is not defined, it will use the fields defined in the dataSource, and the 'label', 'previewFormat', 'editorTemplate' and 'operators' properties can be added to the dataSource fields object to be applied to the Filter widget.

This is extremely helpful and should probably be described in the documentation.

I'd like to suggest (if it's not already another undocumented feature) that dataSource fields can be hidden from the Filter widget, perhaps with a simple boolean such as 'filter: false'

Thanks