Sets the position pop-up calendar will appear from (applied just to calendar initialized as date input field).
Parameters:
myCalendar.setPosition('right');
Description:
There are 2 ways to call the method:
//common way myCalendar.setPosition('right'); //positioning //sets left and top absolute offsets of calendar myCalendar.setPosition(10, 20); //sets just left absolute offset of calendar myCalendar.setPosition(10); //sets just top absolute offset of calendar myCalendar.setPosition(null, 20);