I'm using a fork of React-Select for a project adding customized functionality. I'm trying to disable the dropdown from opening when a user clicks on one of the tags (When multi is
Solution 1:
In case if used custom tag component (valueComponent)
try to use:
onMouseDown = (e) => e.stopPropagation();
(instead of onClick) on that component.
Share
Post a Comment
for "React-select Onclick On Multi Tag Prevent Open Dropdown"
Post a Comment for "React-select Onclick On Multi Tag Prevent Open Dropdown"