Completed
Last Updated: 27 Oct 2020 13:25 by ADMIN
Release 2020.R3.SP.next
Created by: Piotr
Comments: 0
Category: Filter
Type: Bug Report
0

Bug report

Using Array.prototype adds items to FIlter fields DropDownLists

Reproduction of the problem

Open below Dojo and run it.

https://dojo.telerik.com/izABOFaf/2

Open Featured DDL. The result is


Expected/desired behavior

Using Array.prototype shall not add items to the DDL


Environment
Kendo UI version: [all]
jQuery version: x.y
Browser: [all]

Completed
Last Updated: 10 Apr 2020 11:04 by ADMIN
Created by: James
Comments: 1
Category: Filter
Type: Bug Report
0
Based on your demos (https://demos.telerik.com/kendo-ui/filter/index), it seems it is impossible to get the filter control to use localized messages just by loading the required language file (other controls seems to switch language OK).   Whilst it is possible to have completely custom text using the configuration api, it should still be possible to have defaults for the main languages supported.
Completed
Last Updated: 06 Oct 2020 14:11 by ADMIN
Release 2020.R1.SP1

When using the Filter control and configuring the Fields, if a 'number' type field is used, the value 0 (zero) is ignored, for example:


$("#filter").kendoFilter({
    dataSource: dataSource,
    expressionPreview: true,
    fields: [
      { name: "age", type:"number", defaultValue: 31 },
      {name: "foo", type: "number", defaultValue: 0},
      { name: "name", type:"string", defaultValue: "Rick" }
    ]
  });

'age' and 'foo' are both 'number' type fields, but the default value of 'foo' will be ignored when the filter is chosen in the UI.

 

Here is a runnable example of this, notice how when selecting 'age' from the fields dropdown, the value correctly defaults to 31, but selecting the 'foo' field will not have the value populate correctly:

https://dojo.telerik.com/eHAROSOz

Completed
Last Updated: 13 Jan 2020 09:15 by ADMIN
Release R1 2020

Reproduction of the problem

  1. Open dojo at https://dojo.telerik.com/@GaloisGirl/AqotEtep
  2. Click "Add expression" and pick "Product name",  "Is not equal to", "".
  3. Click "Apply". The grid show 77 items, as expected.
  4. Click "Add group" and then "Apply".

Current behavior

The grid shows 0 items. The expression preview is (Product Name Is not equal to '').

Expected/desired behavior

The grid should show 77 items. For an optimal user experience, the empty groups should be deleted when applying the filter.