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.

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

Unplanned
Last Updated: 17 Jan 2019 14:39 by ADMIN

Hi Telerik,

It would be great if we can add Select All functionality as a built-in feature of the MultiSelect component. It is especially useful when working with checkboxes, e.g., https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates/#toc-rendering-item-checkboxes.

Duplicated
Last Updated: 12 Jul 2021 15:20 by ADMIN
Created by: Seyfor
Comments: 1
Category: MultiSelect
Type: Feature Request
3

Please provide option to set maximum selected items in multi-select.

Same as maxSelectedItems in jQuery version.

Unplanned
Last Updated: 27 Jul 2021 12:14 by ADMIN
Created by: SJ
Comments: 1
Category: MultiSelect
Type: Feature Request
16

Hi I want to change the order of the selected items in a multiselecte. I know we have sortable to drag and drop, but can we do that inside a multiselect?

 

When we choose several items from the dropdown in a multiselecte component, the order of the tags is the same with how we choose from the dropdown and we can not change the order. Is there a way to change the display order by drag and drop?

Completed
Last Updated: 23 Jan 2024 12:33 by ADMIN
Currently keyboard navigation in Multiselect is a bit limited in comparison to the same functionality in Multiselect in Kendo UI for jQuery. 

It would be great if the shortcuts in Multiselect in Kendo for Angular matched shortcuts in Multiselect in Kendo UI for jQuery.
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
Unplanned
Last Updated: 09 Jun 2020 13:39 by ADMIN
Created by: Imported User
Comments: 0
Category: MultiSelect
Type: Feature Request
6
Disable individual choices from deletion on multi-select in case there is a value that must always be selected.
Unplanned
Last Updated: 13 Jul 2021 07:36 by ADMIN
Created by: Imported User
Comments: 0
Category: MultiSelect
Type: Feature Request
5
Add maxSelectedItems property to the Multiselect. 
1 2