Opened 15 years ago

Closed 14 years ago

Last modified 10 years ago

#3056 closed bug (fixed)

Datepicker Positioning in IE6

Reported by: [email protected] Owned by: grabanski
Priority: minor Milestone:
Component: ui.datepicker Version: 1.5.1
Keywords: datepicker ie6 doctype position Cc:
Blocked by: Blocking:

Description

The datepicker library will not have an appropriate top positioning if IE6 has a valid HTML 4.01 Transitional Doctype. The first selection seems to work, but the second time that the datepicker is activated it does not work correctly.

To Recreate:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
	<head>
		<title>Example</title>
		<script type="text/javascript" src="jquery.js"></script>
		<script type="text/javascript" src="jquery-ui.js"></script>
		<script type="text/javascript">
			$(function() {
				$("input").datepicker();
			});
		</script>
	</head>
	<body>
		<br><br>
		<br><br>
		<br><br>
		<input type="text">
	</body>
</html>

Change History (4)

comment:1 Changed 15 years ago by Cloudream

Milestone: TDB

comment:2 Changed 15 years ago by taiidani

Ticket #3232 contains a patch that fixes this issue as well.

comment:3 Changed 14 years ago by kbwood

Resolution: fixed
Status: newclosed

Apparently fixed by solution for #3232.

comment:4 Changed 10 years ago by Scott González

Milestone: TBD

Milestone TBD deleted

Note: See TracTickets for help on using tickets.