tag-it icon indicating copy to clipboard operation
tag-it copied to clipboard

Selection issue on auto complete in Bootstrap modal box

Open tyidnet opened this issue 11 years ago • 4 comments

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

tyidnet avatar May 15 '13 15:05 tyidnet

try this

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

baio avatar Jun 05 '13 11:06 baio

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; }

pthaden avatar Aug 01 '13 15:08 pthaden

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

hwiens avatar Sep 16 '15 08:09 hwiens

Try This

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

Prathees31 avatar Jun 08 '17 09:06 Prathees31