Currently building an application in Angular 4.1.3, angular-cli 1.1.1, angular material 2.0.0
The normal md-select overlay behavior seems to shift the position of the overlay up or down so that the current selection is located on top of the respective input field, you can see that functionality in the demo: https://material.angular.io/components/select/examples
This seems like solid UI for a list that is 3 items in length, but working with a list that is 20+ items causes the list to shift drastically (selecting an option at the bottom of the list causes the entire list to move up to the point of covering other input fields above.
I am trying to find a way to have the select dropdown overlay be stationary (always below the input field itself). I have tried editing the _calculateOverlayPosition method on the prototype of the MdSelect class but I have not had much success. Has anyone run into this issue? Template and associated controller are very cookie cutter.
Template:
<md-select (change)="currencySelected()" formControlName="currency"
<md-option *ngFor="let currency of currencies
[value]="currency.label">
{{ currency.label }} - {{ currency.description }}
</md-option>
</md-select>