telerik / kendo-react

Issue tracker - KendoReact http://www.telerik.com/kendo-react-ui/
https://kendo-react-teal.vercel.app
Other
212 stars 37 forks source link

MultiSelect not clear non-existing value if filterable is true #491

Closed deyw closed 4 years ago

deyw commented 4 years ago

Step to reproduce: Go to documentation page: https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/filtering/

  1. Enter non-existing value in text field and leave (onBlur, ...etc); -- non-existing value still in input, but actual value is empty array;

  2. Set filterable prop false. -- non-exisiting value removed from input

Expected result: Non-existing value should be cleared when filterable property is true

nstoychev commented 4 years ago

@deyw - Please see the following example about how to control the input value - https://stackblitz.com/edit/react-nuwkel?file=app/main.jsx.

I assume that this is the behavior that you expect.

deyw commented 4 years ago

@nstoychev Thank you!