dhtmlxcalendar

i’m using calendar.and i want to open it at the left side of my textbo.Presently it opens right side of the textbox.





            



cal1 = new dhtmlxCalendarObject(‘calInput1’);

cal1.setDateFormat("%m/%d/%Y");





Please provide me solution for this.

Can be achieved by code modification only
dhtmlxcalendar.js, line 1125
this.parent.style.left = getAbsoluteLeft(this.con) + this.con.offsetWidth + ‘px’;
can be changed as
this.parent.style.left = getAbsoluteLeft(this.con) - 100 + ‘px’;