Dean Peterson

Results 2 comments of Dean Peterson

This is a problem with $.datepicker not ui-date. one hack solution is the following (adapted from http://stackoverflow.com/questions/11533161/jquery-ui-datepicker-change-z-index) ``` $scope.datepickerOptions = { beforeShow : function(element, options){ setTimeout(function(){ angular.element(element).datepicker("widget").css("zIndex", 200000); }, 100);...

created patch here: https://github.com/angular-ui/ui-date/pull/69