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

Selection issue on auto complete in Bootstrap modal box #171

Open
tyidnet opened this issue May 15, 2013 · 4 comments
Open

Selection issue on auto complete in Bootstrap modal box #171

tyidnet opened this issue May 15, 2013 · 4 comments

Comments

@tyidnet
Copy link

tyidnet commented May 15, 2013

I have two forms use tag-it auto complete. One sit in a page, and one in modal box. Both are calling the same array list and have same target class. The one in the page works beautifully. However, the one in modal box has weird issue: when I use mouse, or down key to select tag from drop down list, it always put first letter in the input box with highlight, and full tag after it without highlight.

I tried to use different target class but not help. Any thing I can twist around to got it work, or can I make click action to select the tag instead of mouseover it?

Thanks!

Tony

@baio
Copy link

baio commented Jun 5, 2013

try this

.ui-autocomplete
{
z-index: 1051;
}

@pthaden
Copy link

pthaden commented Aug 1, 2013

Just had this exact same issue, but i had to add .ui-front to override jquery-ui.css:

.ui-autocomplete.ui-front
{
z-index: 1051;
}

@hwiens
Copy link

hwiens commented Sep 16, 2015

thanks pthaden. I have the tagit widget in a modal box and the autocomplete wasn't showing up. your tip helped.

@Prathees31
Copy link

Try This

.ui-autocomplete {
z-index: 99999999 !important;
}

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

No branches or pull requests

5 participants