Unplanned
Last Updated: 03 Nov 2023 15:59 by ADMIN
Created by: Kendo UI
Comments: 0
Category: MultiSelect
Type: Feature Request
0

It would be nice to have an option for the MultiSelect that allows us to add new custom values on blur. An input property such as [resolveOnBlur] or something similar could be added.

The idea is to type any custom value inside the MultiSelect and on blur, to select that custom value as part of selection.

The following example demonstrates how the functionality could be achieved by manually handling the input event of the MultiSelect inner input element and updating the value of the MultiSelect on blur:

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

 

Unplanned
Last Updated: 09 Aug 2023 09:32 by Kendo UI

Hi,

Presently, there isn't a feature that permits the programmatic selection of a custom item. The only approach accessible is to utilize the "Enter" key for item selection. It would be appreciated if an option could be implemented to manually add typed custom items to the MultiSelect value.

https://stackblitz.com/edit/angular-ikoxq1-x3xnsf?file=src%2Fapp%2Fapp.component.ts

Unplanned
Last Updated: 19 Jul 2023 13:44 by Kendo UI

Hi, 

Optimize the internal selection mechanism to enhance overall performance and prevent browser hangs when a large number of items are selected. This enhancement will significantly improve the user experience and ensure smooth functionality within the application.

Example - https://stackblitz.com/edit/angular-83jvpr?file=src%2Fapp%2Fapp.component.ts

 

Unplanned
Last Updated: 22 Dec 2022 08:17 by Mauro
Created by: Mauro
Comments: 0
Category: MultiSelect
Type: Feature Request
2

Currently, when the data of the MultiSelect is grouped, checkboxes are disabled.

You can still use MultiSelectTree instead, however, it doesn't look the same (mainly because its hierarchical and doesn't have group headers).

Declined
Last Updated: 08 Nov 2022 13:48 by ADMIN
Please add an optional dropdown "arrow" icon to the <multiselect> component and have it behave similarly to the <dropdown> component.
Unplanned
Last Updated: 24 Jan 2022 13:09 by ADMIN

Currently, the MultiSelect component indicates an item is selected with a dedicated CSS class - k-selected. This CSS class styles the item so that the whole row in the MultiSelect popup appears selected.

However, if checkbox selection is enabled, the k-selected class no longer appears - the only indication that an item is selected, remains the checkbox.

This request calls for an option to have both types of indication available and independently configurable.

Providing data for an item's selected state for use in a custom template is also desirable.

Unplanned
Last Updated: 26 Jan 2022 11:46 by ADMIN
Created by: Mauro
Comments: 0
Category: MultiSelect
Type: Feature Request
1
Currently, there is no way to style summary tag differently. The GroupTagTemplate only applies to the text inside it.

Multiselect has no class/style property to provide anything. Adding a different class to the Summary tag button can help the users modify it.
Duplicated
Last Updated: 31 Jan 2022 06:39 by ADMIN
Created by: Mauro
Comments: 0
Category: MultiSelect
Type: Feature Request
0
In reference to https://www.telerik.com/account/support-center/view-ticket/1549472

Summary tag in Multiselect should have a unique, identifiable class or an option to add a class so it can be styled differently from the rest of the tags.
Unplanned
Last Updated: 10 Dec 2021 09:36 by ADMIN
Created by: Michal
Comments: 3
Category: MultiSelect
Type: Feature Request
1

is it possible to add aria-label to kendo-multiselect? ( and it should be multiselect responsibility to propagate it to internal input )

 

Duplicated
Last Updated: 16 Sep 2021 11:44 by ADMIN
Created by: Kyle
Comments: 1
Category: MultiSelect
Type: Feature Request
1
  • My project requires that the multiselect control doesn't wrap to the next line.
  • We'd like to make use of the summary tag so that line-wrapping does not occur.
  • We also don't know what the width is going to be, so we can't accurately calculate how many tabs would be able to fit ( for using the existing tagMapper functionality)
  • It would be nice if there was a setting to use the summary tag as soon as a linewrap is going to happen.

 

  • So for example, instead of seeing this when we add too many items:

  • We see this:

  • but if the field ends up wider and therefore doesn't have to wrap, we see all the tags:

 

Declined
Last Updated: 31 Aug 2023 15:15 by ADMIN
Created by: Musashi
Comments: 2
Category: MultiSelect
Type: Feature Request
0

Currently, given a multiselect with some data and allowCustom = true, if the user types "sm" and hits Enter, the control finds the first item in data that starts with "sm" and automatically selects that.

Repro: https://stackblitz.com/edit/angular-buffxv?file=app/app.component.ts

  1. Type "sm" in the MultiSelect and hit Enter
  2. "Small" is automatically selected, valueNormalizer is not hit at all

Looking at the code for the MultiSelect, the auto selection seems to happen because of findIndex(text, startsFrom = 0); the offending line: text && itemText.startsWith(text);

Ideally, the MultiSelect should give me a hook to determine what item is selected. Maybe hit valueNormalizer on Enter

Declined
Last Updated: 18 Jul 2023 15:41 by ADMIN
Created by: Shafeeq
Comments: 1
Category: MultiSelect
Type: Feature Request
1

Whenever we type search text in MultiSelect Dropdown and focus out, the search text gets cleared.

Please provide an option for keeping the typed value in the MutliSelect input, without having to select anything from the dropdown.

Unplanned
Last Updated: 18 Aug 2020 13:03 by ADMIN
Based on the fixed width of the component change the summary tag value without showing tags in a new line. The tags should occupy the space in one line and towards the end when there is no space; then show +1,+2, etc
Unplanned
Last Updated: 03 Jun 2020 11:57 by ADMIN
Created by: David
Comments: 1
Category: MultiSelect
Type: Feature Request
11

I would like to request sortability and drag/drop reordering for the MultiSelect component. 

The drag n drop action should be initiated from clicking and dragging an icon on the left on the left side of every tag template. Dragging the tag text itself should not start the drag n drop action. Attached is a screenshot of the appearance of our tokens; want the user to be able to click on the icon on the left to initiate a drag event.

Declined
Last Updated: 14 Jul 2023 10:02 by ADMIN
Add the ability to see a drop down indicator to the multiselect.
Duplicated
Last Updated: 11 Jun 2020 11:22 by ADMIN
Created by: n/a
Comments: 1
Category: MultiSelect
Type: Feature Request
8
Provide a Select All option for Kendo Angular MultiSelect component.
Declined
Last Updated: 11 Jul 2023 15:04 by ADMIN

Before this directive we do it this way:

	public ngAfterViewInit() {

		const contains = (value: string) => (object: IBaseObjectConfigurationField) => object.name.toLowerCase().indexOf(value.toLowerCase()) !== -1;

		this.multiSelect.filterChange
			.asObservable()
			.pipe(
				switchMap(value =>
					from([this.collection])
						.pipe(
							tap(() => {
								this.multiSelect.loading = true;
							}),
							delay(value ? 350: 0),
							map(data => data.filter(contains(value))),
						),
				),
			)
			.subscribe(x => {
				this.filteredCollection = x;
				this.multiSelect.loading = false;
			});
	}

 

Please provide a (global) option for red line!

Declined
Last Updated: 14 Jul 2023 09:30 by ADMIN
Created by: Martin de Ruiter
Comments: 1
Category: MultiSelect
Type: Feature Request
2

Provide an option to focus programmatically a multiselect item, in order to prevent the popup list from scrolling when the last item is selected.

Here is an example:

https://stackblitz.com/edit/angular-qpbow1-awhxbr?file=app%2Fapp.component.ts

Unplanned
Last Updated: 02 Jul 2019 14:09 by ADMIN

Currently the kengoMultiSelectSummaryTag only supports a number as its input, which enables switching to summary mode if the number of selected items is greater than the specified value.

It would be nice to add an option for dynamic mode which will be based on the available space for the control and will automatically switch to summary mode if there is not enough  space for displaying all the items.

See the screenshots to illustrate how it might look like.

Thanks,

Shai.

 

Declined
Last Updated: 13 Jul 2021 06:09 by ADMIN
Created by: Kiran
Comments: 2
Category: MultiSelect
Type: Feature Request
0
I have multiselect components and i have to need auto suggestions list in my multiselect components how to achieved this functionality? Please Do Suggestions.
1 2