I'm working with Kendo UI for JQuery, and I declared a multiselect to act as a TagBox following this example.
I noticed that whenever the component loses its focus, whatever was typed is cleared. I wish to avoid this behavior, since forcing a user to retype whatever they had anytime they click outside the Multiselect would be annoying.
I tried to do this:
$('.email_notification_create .k-multiselect .k-input').unbind('blur');
$('.email_notification_create .k-multiselect .k-input').on('blur', function(){
console.log(currentEmailInput.val());
console.log('overriden blur');
});
But the value on the input is already cleared, so someone else is clearing the input when the focus is lost.
How can I stop the Multiselect from clearing its input?