从0.10升级到版本0.11时,Angular UI引导程序日期选择器弹出窗口不起作用

时间:2014-08-11 19:17:37

标签: angularjs datepicker angular-ui-bootstrap

在升级到版本0.11后单击时,不会弹出angular-ui-bootstrap日期选择器。

我已尝试设置

recommended work around
is-open="dt.open" ng-focus="dt.open=true"

只有在一个日历上启用它才有效,但如果在同一页面上有两个日历,则不会这样做(打开并且它们都不可用)。任何人都知道更好的工作,不会污染范围吗?

我也尝试将ng-focus更改为ng-click,并且没有运气。

1 个答案:

答案 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