Unplanned
Last Updated: 12 Sep 2023 11:41 by Kyle
Created by: Kyle
Comments: 0
Category: Filter
Type: Feature Request
2

I'd like to use Between and NotBetween operators in the Filter component similar to the available functionality for Telerik UI for AJAX.

Unplanned
Last Updated: 07 Jul 2023 09:49 by SturmA
Created by: SturmA
Comments: 0
Category: Filter
Type: Feature Request
1
Expose a built-in API configuration to either hide or show the clear button for a given Filter item.
Unplanned
Last Updated: 27 Jun 2023 16:19 by Gregory
Created by: Gregory
Comments: 0
Category: Filter
Type: Bug Report
1

Bug report

When a user creates a filter with a date, it starts as an empty Datepicker, but the value is appearing as an empty string. Thus, if the user clicks apply, an error appears in the console. If you place a value in the DatePicker and clear it, the value will be Null.

Reproduction of the problem

  1. Go to this Progress Telerik ASP.NET Core REPL.
  2. Add filter for a Date but keep the datepicker empty.
  3. Select apply.
  4. Now, add a date and clear the value.

Current behavior

The filter menu sends isnull filter queries in the following format:
image

While the Filter component sends it as follows:
image

As a result the ToDataSourceResult method fails.

Expected/desired behavior

If the DatePicker is empty, the filter should properly perform the 'isnull' query upon clicking apply.

Environment

  • Kendo UI version: 2023.2.606
  • jQuery version: All Supported Versions
  • Browser: all
Unplanned
Last Updated: 22 Nov 2022 16:50 by Nabi
Created by: Nabi
Comments: 0
Category: Filter
Type: Feature Request
1
Expose the ability to integrate a MultiSelect editor for filtering with multiple expressions.
Unplanned
Last Updated: 15 Jan 2021 12:20 by ADMIN
Created by: Bob
Comments: 1
Category: Filter
Type: Feature Request
0
I would like the ability to add more than one custom Operator to the Filter Control.
Completed
Last Updated: 13 Oct 2020 18:48 by ADMIN
Release 2020.R3.SP.next
Created by: Bryan Patrick
Comments: 5
Category: Filter
Type: Bug Report
2

Bug report

Filter component operators are always rendered in the initial order, regardless of the specified order

Reproduction of the problem

This code:

.Fields(f =>
      {
          f.Add(p=>p.FirstName).Operators(o =>
                o.String(n =>n
                    .Contains("Contains")
                    .Eq("Is equal to")
                    .Custom("john", c => c.Text("John").Handler("oddNumbersHandler"))
                    )
                );

Renders to this:

Expected/desired behavior
The order of the operators shall be in the predefined order.

Environment
Kendo UI version: [all]
Browser: [all]

Unplanned
Last Updated: 02 Oct 2020 08:21 by ADMIN
Created by: Bryan Patrick
Comments: 0
Category: Filter
Type: Feature Request
2

Feature Enhancement
Expose Default Operator for Filter fields

Current behavior
Apart from setting FilterExpression to render filed with a certain operator, there is no option for setting a Default Operator for the fields

.FilterExpression(f =>
      {
          f.Add(p => p.FirstName).Contains("Jeremy");
      })

The above renders the Contains operator initially but if you change the field and return back to the FirstName field the operator is no longer Contains.

Expected/desired behavior
Default Operator for FIlter fields shall be exposed

Environment
Kendo UI version: all
Browser: al