Skip to content

Instantly share code, notes, and snippets.

@danbarua
Forked from HasAndries/gist:3135128
Last active November 23, 2016 06:22
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save danbarua/5356062 to your computer and use it in GitHub Desktop.
Save danbarua/5356062 to your computer and use it in GitHub Desktop.
AngularJs directive for Bootstrap datepicker
angular.module('bDatepicker', []).
directive('bDatepicker', function(){
return {
require: '?ngModel',
restrict: 'A',
link: function ($scope, element, attrs, controller) {
var updateModel, onblur;
if (controller != null) {
updateModel = function (event) {
element.datepicker('hide');
element.blur();
};
onblur = function () {
//we'll update the model in the blur() handler
//because it's possible the user put in an invalid date
//in the input box directly.
//Bootstrap datepicker will have overwritten invalid values
//on blur with today's date so we'll stick that in the model.
//this assumes that the forceParse option has been left as default(true)
//https://github.com/eternicode/bootstrap-datepicker#forceparse
var date = element.val();
return $scope.$apply(function () {
return controller.$setViewValue(date);
});
};
controller.$render = function () {
var date = controller.$viewValue;
if (angular.isDefined(date) && date != null && angular.isDate(date))
{
element.datepicker().data().datepicker.date = date;
element.datepicker('setValue');
element.datepicker('update');
} else if (angular.isDefined(date)) {
throw new Error('ng-Model value must be a Date object - currently it is a ' + typeof date + ' - use ui-date-format to convert it from a string');
}
return controller.$viewValue;
};
}
return attrs.$observe('bdatepicker', function (value) {
var options;
options = { }; //<--- insert your own defaults here!
if (angular.isObject(value)) {
options = value;
}
if (typeof (value) === "string" && value.length > 0) {
options = angular.fromJson(value);
}
return element.datepicker(options).on('changeDate', updateModel).on('blur', onblur);
});
}
};
});
@thewarpaint
Copy link

Hey, you changed line 41, from

return attrs.$observe('bDatepicker', function (value) {

to

return attrs.$observe('datepicker', function(value) {

Won't that break the directive?

@danbarua
Copy link
Author

yep, my bad.

@EdwardIII
Copy link

@danbarua I'm curious, why:

element.datepicker().data().datepicker.date = date;

and not just this?

element.datepicker('update', date);

@tonyjoanes
Copy link

Does anyone know how to change the date format of this? I can't seem to change it from day, full month name and full year ie. 20 July 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment