bootstrap-combobox
bootstrap-combobox copied to clipboard
Blur fires a Change Event when an item is selected from the Dropdown
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.
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;