(I reproduced my issue here: https://plnkr.co/QvEWjhJhbsghy1OD)
The <ng-select>
drop down list of options is not displayed "over' the <ngx-datatable>
row, it seems cut by the cell's height, making it pretty useless.
A regular <select>
works fine though, I can see all options.
How can I make the ng-select works as expected?
The solution is to use the ng-select
attribute appendTo="body"
as following:
<ng-select [searchable]="false" placeholder="-- choose --" appendTo="body">
<ng-option>Option 1</ng-option>
...