Position of Calendar in relation to form input

This calendar is amazing. Easy config super flexible and feature rich. Awesome I only wish I had found it earlier.
My only issue is the position of the popup calender when using it with a form. The calendar seems to end up flush with teh right side of the text input which is great for a regular page/app, but my target platform for this particular project is mobile browsers. Ultimately I’d like to have the calendar show up directly beneath the input area to keep the user from having to scroll.

My code is as follows, and as you can tell I’ve tried insane values with .setPosition to no avail, where can I set the position of the calendar?

[code]

<--Irrelevant-->

[/code]

Thanks again for the great code!

If a calendar is initialized for input, there is not possibility to define a calendar position.

You may try to use the approach that is applied in the following demo from calendar package:

dhtmlxCalendar/samples/01_initialization/07_calendar_sensitive.html

Sorry, how is that relative?


It’s unfortunate that the calendar position is not customizable.

Sorry, how is that relative?

In this sample the calendar is intialized in the absolutely positioned container with defined left and top position. The html snippet from the sample:

You may use the sample approach to show calendar under the input

ahh…I see.
That’s fine. I’d actually rather have a static calendar for the mobile app… cool thank you.