You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When calling setValue with the silent flag set to true, instead of not firing an event at all, the onChange(param) listener is called with '' as param.
For example,
selectizeControl.setValue('5', true);
fires onChange('').
What's going on here, and how would I fix this?
The text was updated successfully, but these errors were encountered:
When calling
setValue
with the silent flag set totrue
, instead of not firing an event at all, theonChange(param)
listener is called with''
asparam
.For example,
fires
onChange('')
.What's going on here, and how would I fix this?
The text was updated successfully, but these errors were encountered: