Hi the selectbox is show the selected item but i cant open the dropdown at all I am using form in the mdpanel its not working in dialog on mdpanel how can i fix it
i need form with edit user and i need select box that initialize with one of the user param
users :[
{ id: 1, name: 'Bob' },
{ id: 2, name: 'Alice' },
{ id: 3, name: 'Steve' }
],
selectedUser : { id: 1, name: 'Bob' }
html:
<md-select ng-model="ctrl.selectedUser" ng-model-options="{trackBy: '$value.id'}">
<md-option ng-value="user" ng-repeat="user in ctrl.users">{{ user.name }}</md-option>
</md-select>