我希望在使用 Angular UI Bootstrap 库的组件单击按钮时弹出一个日期选择器。Angular UI Boostrap网站上都有这两种方法的示例,但我没有看到将它们结合起来的方法。我不喜欢将 Datepickerdiv
作为popup
指令文本的属性值的想法。
我也尝试ng-show
在 Datepicker上使用,div
但我也无法正常工作。
这是我目前拥有的代码。
<div ng-controller="DatepickerCtrl" class="input-append">
<input class="input-small ng-pristine ng-valid"
type="text"
ng-value="dt" />
<button type="button"
class="btn"
popover-placement="right"
ng-click"showDatePicker=true" // the show when clicked strategy
popover="On the Right!"> // Don't see a way to make this encapsulate a div
<i class="icon-calendar"></i>
</button>
<datepicker ng-model="dt"
ng-show="showDatePicker"
starting-day="1"
date-disabled="disabled(date, mode)"
min="minDate" max="'2015-06-22'">
</datepicker>
</div>
我真的不喜欢这个ng-show
策略。宁愿它是一个弹出窗口,但我认为也有办法做得更好,所以我也不介意。