I am trying to find here http://jqueryui.com/demos/datepicker/#options how to initialize/show the datepicker according to the right offset
(I was performing a demo but i dont know why this fiddle does not work http://jsfiddle.net/vybbh/2/)

Anyone knows how to customize the position of the calendar?
EDIT
$(function()
{
$('.date-pick')
.datePicker({clickInput:true})
.bind('click',
function()
{
left = $('#dp-popup').css('left');
$('#dp-popup').css({'left':left+55});
/*left = $('#dp-popup').css('left')+55;
$('#dp-popup').css({'left':left});*/
}
)
});
found this but the +55 is not making any effect
I’ve figured it out for you!
Here is the fiddle:
http://jsfiddle.net/vybbh/20/
And here is the code:
Apparently they thought of this, and created the isRTL option. True means right to left, false means left to right.
Also, even with the default of
isRTL: false, the calendar will display from the right edge if it is pushed up against the right side of the screen.