bootstrap-combobox icon indicating copy to clipboard operation
bootstrap-combobox copied to clipboard

Blur fires a Change Event when an item is selected from the Dropdown

Open weisborg opened this issue 8 years ago • 1 comments
trafficstars

Whenever an item is picked from the dropdown I get two Change Events. First blur clears the value and triggers change on source and target while also clearing them. Then The Click of the dropdown sets the values in select and and triggers another change.

weisborg avatar Dec 09 '16 23:12 weisborg

I added this to the top of the blur method and it seems to work-

if (e.relatedTarget && $(e.relatedTarget).closest(this.$container).length == 1) return;

weisborg avatar Dec 10 '16 00:12 weisborg