オーバーフローが自動に設定された固定高さのパネルがあります。そのパネル内で、ui-select を使用しています。
選択ボックスをクリックまたは開くと、パネル フッターの後ろに隠れてしまい、ユーザーは下にスクロールして表示する必要があります。オーバーフローが設定された高さが固定されたボックスの外側に ui-select 表示を取得することは可能ですか?
<div class="panel-body" style="height:100px;overflow:auto;">
<div class="col-md-12">
<ui-select ng-model="person.selected" theme="select2" ng-disabled="disabled" style="min-width: 300px;">
<ui-select-match placeholder="Select a person in the list or search his name/age...">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="person in people | propsFilter: {name: $select.search, age: $select.search}">
<div ng-bind-html="person.name | highlight: $select.search"></div>
<small> email: {{person.email}} age:
<span ng-bind-html="''+person.age | highlight: $select.search"></span>
</small>
</ui-select-choices>
</ui-select>
</div>