Side navigation
#6887 closed bug (invalid)
Opened August 09, 2010 09:59AM UTC
Closed August 09, 2010 11:42PM UTC
Datapicker position issus in fireforx
Reported by: | quqtalk | Owned by: | |
---|---|---|---|
Priority: | Milestone: | 1.4.3 | |
Component: | unfiled | Version: | 1.4.2 |
Keywords: | Datapicker position | Cc: | |
Blocked by: | Blocking: |
Description
Using my html code, the Datapicker can't be located in right position. But in IE 8 and chrome is OK.
<html>
<head>
<link type="text/css" href="themes/base/jquery.ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="jquery-1.4.2.js"></script>
<script type="text/javascript" src="ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="ui/jquery.ui.position.js"></script>
<script type="text/javascript" src="ui/jquery.ui.datepicker.js"></script>
<script type="text/javascript">
$(function() {
$("#date1").datepicker({dateFormat: 'yymmdd' });
$("#date2").datepicker({dateFormat: 'yymmdd' });
});
</script>
</head>
<body>
<h1>Test</h1>
<form action="" method="post">
date1:<br><br>
<input id="date1" name="date1" type="text"><br>
date2:<br><br>
<input name="date2" type="text" id ="date2"><br><br>
<br>
<input type="submit" value="submit">
</form>
</body>
</html>
If change the <br> number or sequence, the problem disappear.