Jquery datePicker

Posted by Shane on Stack Overflow See other posts from Stack Overflow or by Shane
Published on 2010-03-21T19:28:06Z Indexed on 2010/03/21 19:31 UTC
Read the original article Hit count: 356

Filed under:
|

I have slight issue with the jquery datepicker in that it displays ABOVE the target box. This is due to the way my page is set up. I found the issue with CSS in my page via firebug, unfortunately it conflicts with about 20 elements.

Next I tried hooking into the "beforeShow event" which works but then after the event fires it just recalculates and puts it where ever it wants.

 beforeShow: function() {
                $('#ui-datepicker-div').show();
                var offset = $('#ui-datepicker-div').offset();
                $('#ui-datepicker-div').css({
                    top: (offset.top + 222) + 'px'
                })
            }

Does anyone else have any ideas how how I can reposition this? I just need to move it down by about 200 odd pixels.

© Stack Overflow or respective owner

Related posts about jquery-ui

Related posts about datepicker