Hello all,
I have a display problem with jquery datepicker in IE 6.0. The border of the datepicker pop-up is not shown in IE 6.0, the background of the pop-up window is white (should be gray) and the back- and forward navigation icons are shown in a wrong color. FF and later versions of IE are showing the expected correct result.
Am I missing something really stupid here?
Thanks a lot in advance for your help! Markus
datepicker
<script type="text/javascript" src="../30_JS/jquery.js"></script>
<script type="text/javascript" src="../30_JS/ui/i18n/ui.datepicker-de.js"></script>
<script type="text/javascript" src="../30_JS/jquery-ui-personalized-1.6rc4.js"></script>
<link rel="stylesheet" type="text/css" href="../00_CSS/00_jquery_theme/ui.all.css">
<script type="text/javascript">
$(function() {
$('#date-pick-occupied-1').datepicker({ showOn: "button",
buttonImage: "../20_IMG/icon_date_picker.png",
dateFormat: 'dd.mm.yy',
buttonImageOnly: true });
});
</script>