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.
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!

Completed
Last Updated: 03 Jun 2022 10:20 by ADMIN
Created by: Andrew
Comments: 1
Category: MultiSelect
Type: Bug Report
1

On the DropDownList Grouping page and the MultiSelect Groping page, the first label (Meat) does not show in IE 11.

Declined
Last Updated: 22 Jun 2021 14:08 by ADMIN
Created by: Rasmus
Comments: 1
Category: MultiSelect
Type: Feature Request
1
I know this can be done with the change event but that is just a workaround. Would use this from UI for angular.
Declined
Last Updated: 04 May 2023 06:24 by ADMIN
Created by: dinesh
Comments: 1
Category: MultiSelect
Type: Feature Request
1
We need single tagmode option for multiselect dropdown property in Angualr 2
Declined
Last Updated: 15 Apr 2019 14:07 by ADMIN

Provide a way to easily clear the selected values from a multiselect. Similar functionality can be achieved by achieved by setting the value of the multiselect to an empty array, however this does not deselect the items in the dropdown portion of the multiselect, and the items must be clicked twice to reselect them. The clear should function the exact same as the built in clear button. 

https://5ec2yi.run.stackblitz.io/

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.
Declined
Last Updated: 14 Sep 2023 08:36 by ADMIN

Use the basic usage example from https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/

Click in the area next to the baseball chip.

The list with available objects pops up.

Click in the place where the cursor is, the popup won't close.

Click in the right half of the component, the popup closes.

 

It seems it's the input element which swallows the click event.

I would expect the popup to be closed, no mather where I click in the component

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: 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: 18 Jan 2024 12:06 by ADMIN

Hi,

In Multiselect editor with open state prevented the component stops accepting mouse clicks as a way of moving cursor.

You can find repro here:  https://stackblitz.com/edit/angular-u1j1p5-grc1nk?file=src%2Fapp%2Fapp.component.ts

Just copy/paste or type some text and try to change cursor position in word/phrase in order to fix something inside provided word.

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.
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

Completed
Last Updated: 23 Feb 2023 11:08 by ADMIN
Created by: chirag
Comments: 2
Category: MultiSelect
Type: Bug Report
0

Hi Team

we were using Multiselect with version of dropdown "@progress/kendo-angular-dropdowns": "5.3.0",

 but now that we have updated the kendo dropdowns version "@progress/kendo-angular-dropdowns": "7.0.2"

CSS of our multiselect is messed up now can you suggest a way to keep our old CSS working as everything was coming from KendoDropdown

as now I can see <li> tag is converted to <div> for each item selected and there is a new class k-chip introduced .

This has been breaking our production please help us in going forward.

 

Declined
Last Updated: 25 May 2022 20:24 by ADMIN
Created by: Simon
Comments: 1
Category: MultiSelect
Type: Bug Report
0

Hi,

We would like to use the MultiSelect-Control in combination with kendoDropDownFilter and autoClose set to false. 

Now when we start typing and hit enter to select a value the filtering text is not cleared and the control is a faulty state.

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

 

1 2