Closed pompalini closed 6 years ago
Datepicker popup settings has the setting datepicker-template-url: https://github.com/angular-ui/bootstrap/tree/master/src/datepickerPopup
datepicker-template-url
Which allows to override the template used for the datepicker with the attribute: datepicker-template-url="angular/datepicker.html"
datepicker-template-url="angular/datepicker.html"
With this line in xeditable.js:
... directiveName: 'editableBsdate', ... inputDatePicker.attr('datepicker-template-url', this.attrs.eDatepickerTemplateUrl); ...
I can then make use of the attribute just like in uib-datepicker: e-datepicker-template-url="angular/datepicker.html"
e-datepicker-template-url="angular/datepicker.html"
Just a suggestion, Cheers
Datepicker popup settings has the setting
datepicker-template-url
: https://github.com/angular-ui/bootstrap/tree/master/src/datepickerPopupWhich allows to override the template used for the datepicker with the attribute:
datepicker-template-url="angular/datepicker.html"
With this line in xeditable.js:
I can then make use of the attribute just like in uib-datepicker:
e-datepicker-template-url="angular/datepicker.html"
Just a suggestion, Cheers