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.
Declined
Last Updated: 19 Sep 2016 09:03 by ADMIN
Created by: Josh
Comments: 1
Category: DropDownList
Type: Feature Request
8
Add a way to check if the current AutoComplete value would be in the suggestions. Since the widget already searched for the value to see if it is in suggestions I would prefer to be able to check the result of that search. Something like calling kendoAutoComplete.search() but not have it affect the UI - just tell me if it was found or not. Is that possible?

I want to be able to alter the UI if the user has entered a value that is not detected in the suggestions to let them know it is not a valid value, and it seems silly to have to manually see if the value is in the datasource (and handle the filter variants 'startsWith' and 'contains') when that is already being done by the widget. So, I'm just looking to detect whether the search done by the widget found the value in suggestions or not.
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/
Completed
Last Updated: 19 Sep 2016 06:02 by ADMIN
Currently multiselect control has a change event only which is supposed to take care of add/remove event.
Please add proper events or pass info in the change event about what changed, so that developers doesn't have to write the same JS again and again.
See OnaBai's reply here

http://stackoverflow.com/questions/16608565/kendo-multiselect-trigger-an-event-when-an-item-is-removed

http://stackoverflow.com/questions/17653958/kendo-ui-multi-select-remove-selected-element-using-value
Completed
Last Updated: 19 Sep 2016 06:02 by ADMIN
Created by: khalil
Comments: 1
Category: DropDownList
Type: Feature Request
6
The autocomplete inorder to support search and at the bottome display all the results and the number of matched results,
there is need to footer template, like the facebook search autocomplete.
Completed
Last Updated: 19 Sep 2016 06:06 by ADMIN
Created by: Daniel
Comments: 4
Category: DropDownList
Type: Feature Request
5
In order to check dirty tracking, I would like to check the defaultSelected of the option of the MultiSelectControl. This now does not work.
Completed
Last Updated: 19 Sep 2016 06:03 by ADMIN
Created by: Jose
Comments: 1
Category: DropDownList
Type: Feature Request
5
Currently, the AutoComplete widget supports only a single separator value. It would be desirable to be able to fire an autocomplete action after multiple separators, which can be suplied as an array in the separator property of the configuration object.
Declined
Last Updated: 11 Dec 2019 09:28 by ADMIN
Created by: Scott
Comments: 3
Category: DropDownList
Type: Feature Request
5
I would love to see the ability to disable/enable items in the DropDownList dynamically at run time.  We have complex validation rules in our UI that need to prevent the user from using certain items if other options are selected.  

The big problem is the DropDownList doesn't let me enable/disable items or add/remove them. 

This means instead of having a few change events wired up to enable/disable items, I need to do it in complex validation rules.

I think the ability to disable/enable items would be a valuable feature to the kendo framework.

Regards,

Scott
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"
Declined
Last Updated: 17 Dec 2019 17:09 by ADMIN
Created by: WingMan2010
Comments: 7
Category: DropDownList
Type: Feature Request
4
to have Accent Folding support for kendo combo box. We are using generic html/Jquery to do this now. Is there a work around or and any suggestions.
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.
Declined
Last Updated: 17 Dec 2019 17:30 by ADMIN
Make up/down arrow keydown events fire a DropDownList change event when in the expanded state.

When a user clicks on the DropDownList, the list gets expanded. There is no change event fired for up/down arrow keydown events. I currently have to intercept the up/down keydown events manually. Having up/down arrow keydown events fire a change event would make the widget more intuitive and helpful for user interactions.
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.
Declined
Last Updated: 12 Dec 2019 09:51 by ADMIN
Created by: Imported User
Comments: 3
Category: DropDownList
Type: Feature Request
3
Need to add configuration to display value which is combination of two or more properties or fields in dataSource. Just like valueTemplate in dropdownlist list but without html tags, like

$('#comboboxinput').kendoComboBox({
    dataSource:[{Name:"English (US)", Value:"en-US"}, {{Name:" Japanese (Japan)", Value:"ja-JP"}}],
    template:"<div>#=data.Name+' - '+data.Value#</div>"
    complexValueFormat:"data.Name+' - '+data.Value"
})

I was working on a project where I was asked to display large number of items on dropdown list so i was using template and valueTemplate confugurations, since the items was too large to scroll we decided to use combobox but the problem is unable to display complex values after selecting an item. Currently I'm looping through all items and adding a property DisplayName to each item before setting dataSource. This feature will be very useful and replace dropdownlist if dataSource is too large and complex value is to be displayed.
Declined
Last Updated: 17 Dec 2019 09:30 by ADMIN
Created by: Imported User
Comments: 1
Category: DropDownList
Type: Feature Request
3
Hi Support Team,

Current, we are facing a problem when using "kendo ComboBox" and options in attachment. To reproduce this issue, you have to run sample(kendoui.web.2013.1.319.commercial\examples\web\combobox\index.html) from attachment on safari of iPad.
Step by step:
1. Click on arrow icon to expand items
2. Click on textbox
3. Type data to search items near the last item on textbox

Actual: ComboBox don't auto scroll to item of user typed.
Declined
Last Updated: 17 Dec 2019 17:19 by ADMIN
Created by: Imported User
Comments: 1
Category: DropDownList
Type: Feature Request
3
Best practice dictates that dropdowns open on mousedown, such that that user can press, move to the desired item, and release all in one movement. You'll of course find this behaviour across many apps and OS's, including MS Office, Windows and OSX. Sadly, Kendo UI dropdowns open on mouseup/click, rather than mousedown, which means the user has to do two clicks to get to what they want. For heavy-usage applications, this is a big pain for users, and definitely affects usability.
Declined
Last Updated: 18 Dec 2019 10:09 by ADMIN
On MultiSelect have an option when they type in a complete name and then blur out to save that name.

It works if they hit enter or tab. But if they don't (like if they immediately press the Submit button), then it looks it took their entry but it really did not.
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: 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