Hello, I have a dropDown made with ui-select, which does not open over the rest of the site.
Asyoucansee,itonlyopensuptothedivborder
IalreadytriedtheexamplesIfoundonsites.examples:position:absolute,z-index:99999,overflow:visible,innocasedidIsucceed.
ui-selectcode:
<divclass="form-group">
<strong>Perfis: </strong>
<ui-select ng-model="acao.perfis"
multiple
title="Selecione um perfil">
<ui-select-match placeholder="Perfil" allow-clear="true">{{$item.nome}} </ui-select-match>
<ui-select-choices repeat="perfil in acoesCtrl.perfis | filter: $select.search">
{{perfil.nome}}
</ui-select-choices>
<ui-select-no-choice>
Nenhum registro encontrado
</ui-select-no-choice>
</ui-select>
My question is: How do I open the dropDown on the div?