The dropdown box can display completely.
http://jsfiddle.net/yesmeck/yaBPm/1/
This is due to two things:
Related: #47, #64
I tried set "dropdownParent" to "body", but forgot set the z-index. It works great now, thank you.
Why not set dropdownParent's default value to "body"?
I just had this issue on the newest version of Selectize.js. The Bootstrap 3 modal had z-index: 1040 and the selectize-dropdown had z-index: 1000 in selectize.bootstrap3.css. Just a heads up since I had to fix it manually. (I'm using bootstrap 3.1.1)
this solution seems to be no longer working. I checked the fiddle. Any new workaround available?
some bootstrap classes force the select to have a position relative attribute instead of absolute. Add to the style section :
.selectize-dropdown { z-index: 99999 !important; position:absolute !important;}
I could not make it work inside a modal even with all these options...
Most helpful comment
this solution seems to be no longer working. I checked the fiddle. Any new workaround available?