Hi,
I am running in ti issue where extended MultiSelect selects primitive values after 1st value has been selected. See image blow and attached sample to recreate issue. Please also provide feedback regarding a way to mitigate this bug.
Hello Maxim,
As discussed in the support thread the reported behavior is expected. When the MultiSelect component is extended, the following line should be added, where the marked in yellow is the name of the custom widget.
kendo.data.binders.widget.multiSelectCustom = kendo.data.binders.widget.multiselect;
The above is described in point 7 in this Custom Widget article. In the context of the provided sample application, the above should be defined as:
kendo.data.binders.widget.mymultiselect = kendo.data.binders.widget.multiselect;
This way the extended MultiSelect will work as expected.
Regards,
Aleksandar
Progress Telerik