React-select Onclick On Multi Tag Prevent Open Dropdown
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
In case if used custom tag component (valueComponent
)
try to use:
onMouseDown = (e) => e.stopPropagation();
(instead of onClick
) on that component.
Post a Comment for "React-select Onclick On Multi Tag Prevent Open Dropdown"