Open dropDown above div

3

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?

    
asked by anonymous 09.02.2017 / 17:56

1 answer

-1

Here's a suggestion

You have already tried using the parent and child container css:

.elemento-pai{
    position: relative
}

.elemento-filho{
    position: absolute;
    z-index: 1;

}
    
17.10.2018 / 21:07