vote up 3 vote down star
1

I'm using jQuery UI's datepicker control in a position: fixed toolbar at the bottom of my page. Occasionally, on random computers, the datepicker appears below the toolbar, which means it's off the page and impossible to view or interact with.

Is there a way to force the positioning of the datepicker control to always be above and to the right of its <input>?

flag

They already have _checkOffset, called from _showDatePicker, for this very purpose...strange... ( jquery-ui.googlecode.com/svn/tags/… ). Have you caught this behaviour in action with Firebug open? Maybe some random error is occurring. (This is why I stopped using jQuery, myself...) – Kev Oct 27 at 18:27
No errors in Firebug. – ceejayoz Oct 27 at 18:45
Can you better trim the randomness of the error? Some versions of Firebug get mess with the page-height offsetting elements and, in theory, could be responsible for the outcome. Or are we talking Internet Explorer? – Frankie Nov 2 at 16:56
Happens in IE, Safari, and Firefox. – ceejayoz Nov 2 at 19:08

3 Answers

vote up 1 vote down check

You could change the lines:

offset.left -= (offset.left + dpWidth > viewWidth && viewWidth > dpWidth) ? Math.abs(offset.left + dpWidth - viewWidth) : 0;
offset.top -= (offset.top + dpHeight > viewHeight && viewHeight > dpHeight) ? Math.abs(offset.top + dpHeight + inputHeight*2 - viewHeight) : 0;

...to read:

offset.left = $(inst.input).position().left + dpWidth;
offset.top = $(inst.input).position().top - dpHeight;

This loses flexibility, though. If your input happens to be at the top of the page, you'll have the opposite problem from before.

link|flag
Thanks. The datepicker is never at the top of the page, and this is a very limited system so I can say with reasonable certainty it'll stay that way. Will try this out, but if anyone has a solution that doesn't require editing the core jQuery UI code that'd be great too. – ceejayoz Oct 27 at 18:47
No prob. I hope there is a better solution out there for you... – Kev Oct 27 at 19:08
vote up 0 vote down

From the documentation, it looks like you might be able to use the 'dialog' method of the datepicker plugin to achieve your desired outcome. However, using this most likely means that you will have to implement some of the glue that you would otherwise get out-of-the-box with datepicker, such as a callback handler to extract the date, etc.

I tried to mock up some code to see it in action and short of getting the datepicker to display, I couldn't quite get it working, though. Anyway, I wanted to point you to it in case you have better luck than I did.

link|flag
vote up 0 vote down

Problem is that element in position: fixed show top position 0px (check with: alert$('#datepicker2').position()).

Solution:

$('#datepicker').datepicker( {beforeShow: function(input) {
    var x = 100; //add offset
    var y = 20; 
    field = $(input);
    left = field.position().left + x;
    bottom = y;
    setTimeout(function(){
        $('#ui-datepicker-div').css({'top':'', 'bottom':bottom + 'px', 'left': left + 'px'});      
    },1);                    
}}

Test HTML:

<form style="position:fixed; bottom:0; width:100%" name="form1" method="post" action="">
  <label>
    <input style="left:300px; position:absolute; bottom:0" type="text" name="textfield" id="datepicker">
  </label>
</form>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.