Declined
Last Updated: 31 Aug 2023 15:16 by ADMIN
Created by: Maxime Bellemare
Comments: 1
Category: ComboBox
Type: Feature Request
1

When the popup of the Combobox is opened and an item is focused, select its value on pressing Enter when using custom values:

https://dojo.telerik.com/UGajuzUh

Unplanned
Last Updated: 09 Aug 2023 09:28 by Kendo UI
Created by: Kendo UI
Comments: 0
Category: ComboBox
Type: Feature Request
0

Hi,

The current scenario involves the itemDisabled function being invoked five times for each item when the popup is active.

Example - https://stackblitz.com/edit/angular-natpq9-5uzrh5?file=src%2Fapp%2Fapp.component.ts

It would be preferable to optimize this such that the function is called only once per item.

Declined
Last Updated: 11 Jul 2023 14:46 by ADMIN
Created by: Denis Miorandi
Comments: 2
Category: ComboBox
Type: Feature Request
2
A Telerik filter act as "contains" operator (probably 90% of use cases)
should be good to avoid writing everytime filter by hand 
Declined
Last Updated: 04 May 2023 06:21 by ADMIN
Created by: Jaap
Comments: 1
Category: ComboBox
Type: Feature Request
1
When ComboBox popup is closed and the cursor is in the input field, you can use arrow up and down to select next/prev item in the list.
Allow the use the mouse wheel to do that (only when combobox has focus)
Completed
Last Updated: 13 Jul 2021 13:52 by ADMIN
Created by: Barry
Comments: 2
Category: ComboBox
Type: Feature Request
0
See ticket 1430088, angular combobox component should support a high property.
Declined
Last Updated: 16 Jun 2021 13:37 by ADMIN
This is mainly for kendo ui for angular.  The debounce property could be the number of milliseconds before the filter event is fired.  
Declined
Last Updated: 16 Jun 2021 13:34 by ADMIN
Created by: Otto Neff
Comments: 1
Category: ComboBox
Type: Feature Request
1
Add sender to events, to reuse methods

=> ComboBox 

  valueChange(onlyValueNoSender) {

  }
Completed
Last Updated: 02 Jun 2021 12:43 by ADMIN
Created by: Karim
Comments: 1
Category: ComboBox
Type: Feature Request
1

We are desperately searching for a MultiColumnComboBox and I am very surprised that it is not part of the Kendo Angular components.
The MultiComlumnComboBox is one of the most important components and a lot of people deal with it everytime. We have lots of models for which a single text is not enough and doesn't really tell the user anything about the dataset

Example:

Let's say we have a company table in the db like the following:

+----+---------+---------+----------+
| Id |  Name1  |  Name2  |  Name3   |
+----+---------+---------+----------+
|  1 | Porsche | USA     | New York |
|  2 | Porsche | USA     | Boston   |
|  3 | BMW     | Germany | Munich   |
+----+---------+---------+----------+

If I just display the Name1 in the ComboBox, no one will know the difference between 1 and 2. Sure, I could work around by just putting them into a textfield of a DTO, separated by a dash but that will look really nasty as they won't be aligned properly.

We would highly appreciate if this component gets added as it is already in jQuery, ASP .Net Core, ASP .Net MVC, WPF and WinForms.

Thanks!

Unplanned
Last Updated: 07 May 2021 13:20 by ADMIN

We just would like to customize the open/close combo selector with two different icons.
Actually, there is no easy way to do that because there is no CSS selector that has two different values based on popupstatus.

The only way is to introduce a login on every combo as shown on link: https://stackblitz.com/edit/angular-2gdnhv?file=app/app.component.ts

we are just asking for a kendo native solition.

Completed
Last Updated: 09 Jun 2020 14:15 by ADMIN
Created by: Andrew
Comments: 3
Category: ComboBox
Type: Feature Request
24
Please add grouping to combobox and dropdown for feature parity with kendo for jquery.

I would like to migrate from kendo jquery to kendo angular but the lack of group by is a major problem
Unplanned
Last Updated: 09 Jun 2020 13:37 by ADMIN
Created by: Michael
Comments: 1
Category: ComboBox
Type: Feature Request
5
Missing scroll event in comboboxes.
We need this to be able to implement paging functionality for big data scrolling.
Declined
Last Updated: 05 Aug 2019 15:43 by ADMIN
Created by: Hetali
Comments: 2
Category: ComboBox
Type: Feature Request
1
Prevent the user from deleting the selected value in the ComboBox and leaving it empty.
Declined
Last Updated: 19 Mar 2019 08:49 by ADMIN
Created by: Graham
Comments: 1
Category: ComboBox
Type: Feature Request
0

I would like to be able to render the selected item for a ComboBox with a template which could be called kendoComboBoxTagTemplate so that I can render it as a hyperlink. This feature would provide similar functionality to the MultiSelect kendoMultiSelectTagTemplate.

I had considered doing a bit of a hack by using the MultiSelect and only allowing a single selection but this is nasty as you will still get the selected value as an item in an array. It would be much better if the tag template functionality was provided for ComboBox.