mugifly / jquery-simple-datetimepicker

Date & time picker for jQuery, It's simple & clean.
http://mugifly.github.com/jquery-simple-datetimepicker
Other
259 stars 181 forks source link

display issues in IE7: time appears below calendar with no scroll #171

Open rowe1 opened 8 years ago

rowe1 commented 8 years ago

image

I've tested the demo in IE7 mode and it looks fine.

I'm using knockout and calling

self.showdtPicker = function(){
        $(function(){
            $('#dtpicker').appendDtpicker({
                "closeOnSelected": true,
                "inline": true,
                "minuteInterval": 15,
                "futureOnly": true
            });
            $('#dtpicker').handleDtpicker('show');
        });
    }

on the click event of the input field.

Any ideas what I can do to push the time selection over to the right side of the calendar with the scroll bar the way it should be?