For all the themes below, you can scroll the picker into view with something like this:
$( '.datepicker' ).pickadate({
    onOpen: function() {
        scrollPageTo( this.$node )
    }
})
function scrollPageTo( $node ) {
    $( 'html, body' ).animate({
        scrollTop: ~~$node.offset().top - 60
    }, 150)
}Browser support: IE7+, Chrome, Firefox, Safari, Opera, iOS Safari, Android browser
Dependency: jQuery 1.7+

Made by Amsul