You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the selectize widget is initialized with dropdownParent: 'body' it is not rendered correctly at all.
It is wrongly positioned which could be fixed by setting position: absolute; css property for .selectize-dropdown.
But neither other css rules are applied to .selectize-dropdown. I would say that is because all the rules are defined as: .form-control.selectize-control .selectize-dropdown but in case of dropdownParent: 'body' the .selectize-dropdown is outside the .selectize-control element in the DOM tree.
The text was updated successfully, but these errors were encountered:
When the selectize widget is initialized with
dropdownParent: 'body'
it is not rendered correctly at all.It is wrongly positioned which could be fixed by setting
position: absolute;
css property for.selectize-dropdown
.But neither other css rules are applied to
.selectize-dropdown
. I would say that is because all the rules are defined as:.form-control.selectize-control .selectize-dropdown
but in case ofdropdownParent: 'body'
the.selectize-dropdown
is outside the.selectize-control
element in the DOM tree.The text was updated successfully, but these errors were encountered: