Unplanned
Last Updated: 04 Jul 2022 10:11 by David
Created by: David
Comments: 0
Category: MultiSelect
Type: Feature Request
1

One of my forms has a multiselect control and it binds to items some of which contain a comma (",") .

The problem is that when form is submitted kendo multiselect returns multiple selected items separated by comma and it's difficult to separate items on backend.

Why can't multiselect control have a property named SeparationCharacter like:

.SeparationCharacter("*")

This way developers can choose how items will be separated on the backend and this will make our life little easier and save some development time.

Unplanned
Last Updated: 18 Apr 2022 09:22 by Earl

Hi

Currently, if I want to get the selected values with a separate AJAX request, I have to make a standard AJAX call in the MultiSelect's DataBound event handler. It would be great, if this functionality was built into the control itself like this:

.DataSource(source =>
{
   source.Read(read =>  {read.Action("GetItemSets", "List"); });

   source.Values(values => { values.Action("GetSelectedValues", "List" ) }
 })


Thank you

Earl

Unplanned
Last Updated: 12 May 2020 14:07 by ADMIN
Created by: BDH
Comments: 0
Category: MultiSelect
Type: Feature Request
1

I'd like to request to have a built-in scroll bar for the Multiple tag mode which would show only one line, and adjust for that line of tags accurately.  

Thanks!