Как управлять объектом datepicker для вызова метода открытия / закрытия datepicker.как получить объект DatePicker в другой директиве angularjs.
** HTML **
<input type="text" class="form-control" uib-datepicker-popup="{{format}}" ng-model="dt" is-open="popup1.opened" datepicker-options="dateOptions" ng-required="true" close-text="Close" alt-input-formats="altInputFormats" picker-date />
Директива:
module.directive('pickerDate', function() {
return {
restrict: 'A',
priority: 1,
require: 'ngModel',
link: function(scope, element, attrs, ctrl) {
console.log(ctrl)
element.on('click', function() {
});
// console.log();
}
};
});
Когда элемент нажимаетсякак вызвать метод datepicker?Любая помощь будет оценена.Спасибо.