Click outside md-select is not working

微笑、不失礼 提交于 2020-01-07 06:43:52

问题


select in dialog - angular material - mdpanel using sample md-select but click outside the select when the options are open is not working.

how can I fix it ? thx a lot

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>

回答1:


fixed:

I have removed the "zIndex" property from md-panel or md-dialog config object



来源:https://stackoverflow.com/questions/42052162/click-outside-md-select-is-not-working

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!