Unplanned
Last Updated: 16 Dec 2019 09:57 by ADMIN
Created by: sitefinitysteve
Comments: 4
Category: DropDownList
Type: Feature Request
25
When bound to oData, the autocomplete contains filter should treat each WORD as a new "substringof"....or make a new odata advanced contains type\property.

This is more what users expect when searching...and the odata spec has it covered.

http://www.kendoui.com/forums/ui/autocomplete/odata-google-like-filter.aspx
Unplanned
Last Updated: 11 Dec 2019 07:51 by ADMIN
Created by: Imported User
Comments: 2
Category: DropDownList
Type: Feature Request
14
It would allow selected items(Tags) to be displayed as well as add new ones or select ones from an autocomplete dropdown.
Unplanned
Last Updated: 11 Dec 2019 08:09 by ADMIN
Created by: Maja
Comments: 1
Category: DropDownList
Type: Feature Request
14
Unplanned
Last Updated: 11 Dec 2019 08:58 by ADMIN
Created by: Imported User
Comments: 3
Category: DropDownList
Type: Feature Request
13
I'd like to add separators between groups of items in a select / kendoDropDownList. Also known as a horizontal line or delimiter.
The same question was asked here by someone else: http://www.telerik.com/forums/separator-in-dropdownlist
The answer was that this is not supported.
Unplanned
Last Updated: 11 Dec 2019 09:22 by ADMIN
Created by: Imported User
Comments: 2
Category: DropDownList
Type: Feature Request
12
The combobox currently doesn't react on the disabled-attribute for options. It should be possible to make single options visible but not selectable with this attribute as in original html-select:
http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_option_disabled
I found no way to do this yet.
Unplanned
Last Updated: 16 Dec 2019 10:56 by ADMIN
Currently when a combo box is used on an edit form, when the combo box first loads, the value property it is bound to (e.g. an int id) is displayed as the text until the databound event fires, and the text value associated with that value can be loaded.  It gives the combo boxes an unprofessional look, as they briefly display a number until they are done loading.  It also creates some other problems when you have a custom filter function, as described here:

http://www.telerik.com/account/support-tickets/view-ticket.aspx?threadid=781390

I recognize that you would not want to change the default behavior since it would be a breaking change, but could you add a flag to toggle this behavior off.  You could add a property called "DefaultTextToValue" which is set to True by default, and if you set to false, the display would remain blank until the text value was set by the databound event.
Unplanned
Last Updated: 16 Dec 2019 10:51 by ADMIN
I would like to assign multiple values to "dataTextField" property as a part of kendoAutoComplete widget initialization process. This will enable to search and filter values across multiple data fields.
Unplanned
Last Updated: 11 Dec 2019 08:10 by ADMIN
Created by: Imported User
Comments: 0
Category: DropDownList
Type: Feature Request
8
Would be nice to allow selecting items from multiselect several times
Unplanned
Last Updated: 20 Dec 2019 08:56 by ADMIN
Created by: Imported User
Comments: 1
Category: DropDownList
Type: Feature Request
7
I'd like to be able to style the matching text from autocomplete, so I'd like the option for kendo to perhaps wrap the text in a span or something I can get a handle on...

So if I typed "Back" it'll give me results like this
<li><span class='t-match'>Back</span> to the future</li>
Unplanned
Last Updated: 16 Dec 2019 09:55 by ADMIN
Created by: Dinesh
Comments: 0
Category: DropDownList
Type: Feature Request
6
Currently multiselect increases its height to accommodate all selected values. Can you please provide a way where it reverts back to its height after selecting all values and shows 1 value and count for rest of the values selected?

Here is a screenshot:
http://s11.postimg.org/ur5qqy5lv/Multi_Select.png

You can see it's implementation selecting values in "Type Location or Project" multiselect on Residential Tab
http://www.99acres.com/
Unplanned
Last Updated: 11 Dec 2019 09:01 by ADMIN
Created by: Andre
Comments: 0
Category: DropDownList
Type: Feature Request
5
The problem with relying on maxlength that is built into HTML elements is that they do not work in instances where you are rendering multiple inputs as with the kendo-combo-box. If I set the max length, it sets the max length of the select, which is does nothing. It needs to transfer that maxlength to the input text which is rendered along with the select.

Yes, there are workarounds, but when you are using the controls in an angular mvvm environment where you write little to no jquery, the simplest fix should be to have the control code render the input fully given the information provided.

TLDR:
If given <select kendo-combo-box maxlength="3"
please generate <input class="k-input" type="text" maxlength="3"
Unplanned
Last Updated: 27 Nov 2019 11:11 by ADMIN
Created by: Allan
Comments: 1
Category: DropDownList
Type: Feature Request
3
I'm using your demo to reproduce the issue.  

When the user enters a value into the categories and tabs, the focus is not placed in the products field, instead it goes to the View Order button.  This makes using the cascade "feature" very difficult for users.  The focus should go products so they can further refine the search.  And then finally to orders.  But each time they tab they have to move the cursor back to the next field.

Also, since the product and order fields are disabled it prevents user from entering data (even if they know the correct value).  Is there a way to leave the cascade functionality whilst leaving the "child" fields enabled?  We were using it in a Region, Country, City filter, but because of these issues we have had to remove the cascade.

Expected behavior would be to leave all the fields enabled, if the user selects a category, then the subsequent fields (products and orders would be filtered to the selection) so that when the user starts typing in those the parent filter is added to their filter.

Whilst we are discussing filters, why if the filter is narrowed to a single item is it not automatically selected?  Currently the user has to filter, then select the item and then tab.  We have had numerous "bug" reports raised because the user didn't select before tabbing even though the item is the only one in the drop-down and appears to be selected.

Similarly the Mutliselect filter allows typing values, and even when the user selects the value in the dropdown and is added to the selected list, the typed text remains, making the mutliselect field value invalid on submission. 

Repro:

Open page: CascadeComboBox
Move focus to Categories combo (i used my mouse)
Type 'p' which opens the combo and shows 3 items starting with p
Select 'Products' using the down arrow (field now displays Products)
Click Tab
Focus moved to View Order button and NOT Products field.
Using the mouse to select a value works fine, but our users don't want to have to use the mouse as this slows down data entry.
Unplanned
Last Updated: 11 Dec 2019 08:40 by ADMIN
Created by: Mike
Comments: 0
Category: DropDownList
Type: Feature Request
3
Add support for autoScroll to DropDownList options, such that the list scrolls when the mouse pointer reached the top of bottom of the container. Currently, autoScroll: true has no effect on that component. 

Mouse wheel scrolling of the options is not obvious to users, causing some to miss options that overflow the container.
Unplanned
Last Updated: 11 Dec 2019 09:03 by ADMIN
Currently the data-* attributes on the <option> tags are removed by the kendoDropDownList widget.
Please pass them through so they can be used.

After searching the kendo.all.js I found that there is currently no way the custom data-* can be added into the generated html code.

I'm using MVVM for a rather large SPA. Some parts of the SPA is generated on the server (webservice) which is just a partial html. Which looks like (simplest one):
<select data-role="dropdownlist" name="ProductTypeID" class="k-textbox">
	<option value="9" data-cond="DependsValue(ProductTypeCategoryID,1)">Compliments cards</option>
	<option value="1" data-cond="DependsValue(ProductTypeCategoryID,1)">Flyers</option>
	<option value="3" data-cond="DependsValue(ProductTypeCategoryID,3)">Brochures</option>
	<option value="25" data-cond="DependsValue(ProductTypeCategoryID,6)">Roll-up banners</option>
</select>

In this case the data-cond is an attribute in which there is a (javascript) function that should be run to determine if this option is valid or not (it is made hidden if not).

I was trying to convert this into a datasource which can be bound to the dropdownlist, but this has several drawbacks. The most important are:

- There are almost 60 different of these kind of dropdowns that can be generated from the server; This means a lot of extra code and webservices.

- Calling the webservice for each of them is way to slow since each field changes conditional values of other fields, and so the server would be called way to often. But on the client side this runs way faster. Even in javascript.

- The data-* attributes should be supported accordingly the html5 standard to my humble opinion :)

I found two questions regarding this, but both where unanswered.

I add them here for you comfort :)

http://www.telerik.com/forums/converting-standard-select-element-to-kendodropdownlist-removes-additional-properties-from-option-such-as-data-

http://www.telerik.com/forums/how-to-access-data--attributes-in-a-option-after-converting-select-to-a-dropdownlist
Unplanned
Last Updated: 11 Dec 2019 09:19 by ADMIN
Created by: Dashang
Comments: 0
Category: DropDownList
Type: Feature Request
2
I want dropdownlist to have group by with 2 fields
Unplanned
Last Updated: 06 Feb 2023 14:34 by Robin

Bug report

Binding an MVVM DropDownList to a property that is null results in an error on the console.

Reproduction of the problem

  1. Open this example - https://dojo.telerik.com/@martin.tabakov@progress.com/eNUMeLix

Current behavior

An error is thrown

Expected/desired behavior

No errors should be thrown

Environment

  • Kendo UI version: 2023.1.117
  • Browser: [all]
Unplanned
Last Updated: 12 Aug 2020 13:56 by Matthew

Bug report

In DropDownList when virtualization is enabled and the value of the widget is set through the value method, the cascade event is fired twice.

Reproduction of the problem

  1. Open the Dojo example.
  2. Click the 'Set value' button

Current behavior

The cascade event will be triggered twice.

Expected/desired behavior

The cascade event should be triggered only once.

Environment

  • Kendo UI version: 2010.2.617
  • Browser: [all ]
Unplanned
Last Updated: 06 Apr 2022 20:24 by Miguel
Created by: Miguel
Comments: 0
Category: DropDownList
Type: Feature Request
1

Hi Team,

I'd like to request the functionality to add a Clear Button  for the Kendo UI DropDownList similar to the ComboBox.  

Thank you!

Unplanned
Last Updated: 15 Jun 2022 08:40 by Ilia
Created by: Ilia
Comments: 0
Category: DropDownList
Type: Bug Report
1

Describe the bug
While the loading icon is visible in the DropDownList when fetching data, the widget's height is changed.

To reproduce

  1. Open this Dojo example - https://dojo.telerik.com/AFuQItIv/4
  2. Select an item in the first DropDownList

You can compare the height of the two dropdownlists

Expected behavior
The height of the DropDownList shouldn't change when the loading icon is visible.

  • Kendo UI for jQuery

Affected browsers (please remove the unneeded items)

  • All
Unplanned
Last Updated: 11 Jan 2023 08:06 by ADMIN

Bug report

When navigating between inputs and after using Shift+Tab for focusing on a previous input the DropdOwnList popup does not close on pressing 'Enter' key.

Reproduction of the problem

  1. Open Dojo
  2. Focus the text input
  3. Press Tab to focus the DropDownList
  4. Press shift-tab to focus the text input
  5. Press again Tab to focus the DropDownList
  6. Press Alt+down to expand the dropdown
  7. Press the down arrow to select an option in the dropdown
  8. Press Enter key

Current behavior

The popup does not close. If we directly focus the DropDownList and follow steps 6-8 the popup will close.

Expected/desired behavior

The DropDownList should close when pressing the 'Enter' key.

Environment

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