Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ctrl/command-click on multi select not working #562

Closed
ryanlerch opened this issue Apr 4, 2012 · 3 comments · Fixed by #916
Closed

Ctrl/command-click on multi select not working #562

ryanlerch opened this issue Apr 4, 2012 · 3 comments · Fixed by #916
Labels

Comments

@ryanlerch
Copy link

Hi,

The feature to ctrl/command click on a multi select (#21) has stopped working for me after upgrading to a newer version of jquery. (upgraded from version jquery-1.7.2 from jquery-1.6.1)

Control clicking an item on the multiselect box adds the item to the taglist. but instantly closes the dropdown box rather than keeping the dropdown box open.

It is broken specifically on a Linux/GNOME machine on both firefox and chrome (using the ctrl key). I can confirm it works currently on MacOS (using the command key). Have not been able to test on windows as yet.

@jphautin
Copy link

Hello,

Same issue upgrading from jquery 1.5.2 to jquery 1.7.2 on windows :(

@jphautin
Copy link

jphautin commented Aug 1, 2012

on last release (0.9.8) I change line 698 :

        if (!(evt.metaKey && this.is_multiple)) this.results_hide();

by

        if (!(evt.ctrlKey && this.is_multiple)) this.results_hide();

and it seems to work.

@eleven41
Copy link

Same problem using jQuery 1.7.1. The above fix corrects the problem.

I would love to see this fixed "officially".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants