使用下面的代码,我的日期选择器总是打开的,我看不到输入区域:
HTML:
<td ng-controller="notificationModalController">
<span><strong>End Date</strong></span>
<input type="text" name="notification.text" ng-model="notification.text" datepicker="">
</td>
JS:
app.directive('datepicker', function () {
return {
require: 'ngModel',
link: function (scope, el, attr, ngModel) {
$(el).datepicker({
autoclose:true,
onSelect: function (dateText) {
scope.$apply(function () {
ngModel.$setViewValue(dateText);
});
}
});
}
};
});
我正在使用这个主题以防万一:
http://wrapbootstrap.com/preview/WB0T41TX4
为什么日期选择器总是打开的?我希望它表现得像主题示例中的那样,但这是我得到的最接近的: