在升级到版本0.11后单击时,不会弹出angular-ui-bootstrap日期选择器。
我已尝试设置
的recommended work aroundis-open="dt.open" ng-focus="dt.open=true"
只有在一个日历上启用它才有效,但如果在同一页面上有两个日历,则不会这样做(打开并且它们都不可用)。任何人都知道更好的工作,不会污染范围吗?
我也尝试将ng-focus更改为ng-click,并且没有运气。
答案 0 :(得分:7)
两个单独的日期选择器将需要2个不同的变量来控制它们:
is-open="dt.open" ng-focus="dt.open=true" // first datepicker
is-open="dt2.open" ng-focus="dt2.open=true" // second datepicker