Completed
Last Updated: 13 May 2024 12:55 by ADMIN
Release 2024 Q2 (May)
Created by: Ilia
Comments: 0
Category: ComboBox
Type: Bug Report
0

Bug report

Reproduction of the problem

Dojo example.

  1. Press the "reset" button.

Current behavior

The ComboBox's value is cleared and the placeholder is displayed.

The Pickers had the same behavior before this issue was closed: #4767

Scenario: 2.

  1. Open the dropdown and select a different item.
  2. Click "reset". The initial item is properly displayed as selected. (expected)
  3. Click "reset" again. The value is cleared (not expected)

Expected/desired behavior

The initial value remains.

Environment

  • Kendo UI version: 2020.3.1021
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 18 Feb 2021 14:34 by ADMIN
Release 2021.R1.SP.next

Bug report

Pressing the Capslock button when the ComboBox is focused triggers the opening of its dropdown list. The dropdown list opens one time when the Capslock is pressed.

  • The reported behavior was reproduced on Google Chrome and Firefox. On IE, the issue is not replicable.

Reproduction of the problem

  1. Open this Dojo and run it
  2. Select the first ComboBox with a mouse click or the "Tab" button
  3. Press the Capslock button.

Current behavior

The dropdown list of the ComboBox opens when the Capslock is pressed

Expected/desired behavior

The dropdown list of the ComboBox should not open when the Campslock button is pressed

Environment

  • Kendo UI version: 2020.3.1118
  • jQuery version: x.y
  • Browser: [Chrome 87.0.4280.88 | Firefox 78.5.0esr ]
Completed
Last Updated: 18 Jan 2021 09:09 by ADMIN
Release 2021.R1

Bug report

ComboBox with HighlightFirst set to false causes the widget to lose its value when navigating to it.

Reproduction of the problem

  1. Open this dojo example - https://dojo.telerik.com/@martin.tabakov@progress.com/aDAYULeZ/4
  2. Navigate to the ComboBox with tab so that it will open, and check the console to see the value and the text.
  3. Navigate once again to the ComboBox.

Current behavior

On the second tab navigation to the component, its value is lost and is now equal to the text.

Expected/desired behavior

The value of the ComboBox should be preserved.

Environment

  • Kendo UI version: 2020.3.1118
  • Browser: [all]
Completed
Last Updated: 23 Feb 2021 13:50 by ADMIN
Release 2021.R1.SP.next

Bug report

Regression introduced in R1 2020 SP1. Related to #5400

Reproduction of the problem

Dojo example.

  1. Open the browser's dev tools Network tab.
  2. Run the example.
  3. Type in "s" in the ComboBox. A request is sent and the popup displays matching items (expected).
  4. Press Backspace key to clear the ComboBox input.

Current behavior

2 requests are sent to the "read" end point.

Expected/desired behavior

1 request is sent to the "read" end point. Note that if the input is cleared with the "clear" button, it works as expected and only 1 request is sent.

Environment

  • Kendo UI version: 2021.1.119
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 09 Sep 2022 08:24 by ADMIN
Release 2022.R3
Created by: Robert Madrian
Comments: 0
Category: ComboBox
Type: Bug Report
0

Bug report

When a ComboBox is disabled, if the user tries to select the value by double click, additional new line is added to the selection

Reproduction of the problem

  1. Open the Api ComboBoxDemo
  2. Select an item
  3. Click on the 'Disable' button
  4. Double click in the ComboBox to select the value
  5. Paste it

Current behavior

In the Demos a new line is added before the value of the ComboBox. When the same Demo is opened in a Dojo, a part from the text above the ComboBox is also highlighted. (screencast)

Expected/desired behavior

Only the text in ComboBox should be selected even if the widget is disabled.

Workaround

The element holding the down arrow icon could be hidden when the ComboBox is disabled. - Dojo

Environment

  • Kendo UI version: 2020.1.330
  • Browser: [all ]
Completed
Last Updated: 22 Dec 2022 09:34 by ADMIN
Release R1.2023-Increment.3(18.Jan.2023)

To say that you have "Cascading ComboBox" functionality is misleading. You do have "Cascading ListBox" functionality - whereas if a value is picked in the parent listbox, the child will populate with a filtered, dependent list. Changing the parent changes the dependent items in the child list box.

However, the difference with ComboBoxes is that the user can also type a value in, if it doesn't appear in the bound dataset. While this does work as expected for the child ComboBox in the cascading example - it DOES NOT work for the parent. If you type a value into the parent, the child ComboBox remains disabled. You should be able to at least type into the child box. 

We have a simple need for a Manufacturer / Model selection in two cascading ComboBoxes. If the manufacturer does not exist, we want to be able to allow the user to type it in. Since it's a new manufacturer - there are no associated models in the bound dataset, yet. The dependent child ComboBox should at least be enabled so the user can enter the new model.

This behavior can be experienced in your online example. If you pick a value in the parent, the child refreshes and rebinds accordingly. But if you type in the parent - the child remains disabled. This is a bug, if you intend on maintaining that you have "Cascading ComboBox" functionality.

I was given a "workaround" by your support team - but there are still lingering effects (especially on reloading the form with existing data) that would not be an issue if the cascading combobox implementation was completed properly.

Unplanned
Last Updated: 06 Dec 2021 07:02 by Ilia

Bug report

When the virtualization is enabled, mapValueTo option is set to dataItem and initial value is set in the ComboBox, the cursor is not set at the end of the item.

Reproduction of the problem

  1. Run the Dojo
  2. Open the dropdown popup.

Current behavior

The loaded value is 'Hungry Owl All-Night Grocers' but the cursor is not set at the end of the text, but at the fifth position in the item.

Expected/desired behavior

The cursor should be set at the end of the text.

Environment

  • Kendo UI version: 2021.3.1109
  • Browser: [all]
Unplanned
Last Updated: 16 May 2022 10:39 by ADMIN
When using ServerFiltering and Suggest with the ComboBox, occassionally combobox.text() returns the suggested value instead of the typed value.

Would it be able to have the text function return only the unhighlighted portion of the text or add a function to return just the typed portion of the text?

        typedText: function () {
            var that = this,
                caret = kendo.caret(that.input),
                text = that.text();

            return caret ? text.substring(0, caret[0]) : text;
        },

Completed
Last Updated: 16 Oct 2023 15:13 by ADMIN

Bug report

ComboBox select() does not select after version 2021.3.914 when using a serverFiltering

Reproduction of the problem
Open the Dojo - https://dojo.telerik.com/owUfOLef/4


Expected/desired behavior
The first item shall be selected initially.

Environment
Kendo UI version: 2021.3.914 or newer
Browser: [all ]

Completed
Last Updated: 16 Jul 2024 11:20 by ADMIN
Release 2024 Q3 (Aug)

Bug report

The ComboBox's popup is misplaced the first time it opens when configured with RTL and autoWidth:true

Regression introduced with 2024.1.130

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/iWuBAcez/6
  2. Open the ComboBox

Current behavior

The popup is misplaced on the first open

Expected/desired behavior

The popup should be aligned with the input

Environment

  • Kendo UI version: 2024.1.319
  • Browser: [all]
Completed
Last Updated: 17 Jul 2024 14:17 by ADMIN
Release 2024 Q3 (Aug)

Bug report

In a Form that has a ComboBox among other inputs, clicking the reset button only clears the value of the ComboBox.

Regression introduced with 2024.1.319

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/@martin.tabakov@progress.com/oBORokAf/2
  2. Type some text in the inputs
  3. Click the reset button.

Current behavior

Only the ComboBox's value is cleared

Expected/desired behavior

All inputs' values should be cleared

Environment

  • Kendo UI version: 2024.2.519
  • Browser: [all]
1 2