Bartholomew
09-26-2006, 04:12 PM
Hi all
I have the following problem with the Epoch Calendar (version 106):
If it's next to the calendar popup a <select> then the select box is visible thru the open calendar. This happens with all IE < 7.0 and it doesn't happend with Firefox or with IE 7.0 Beta.
The HTML looks like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--Doctype is not required - can be HTML or XHTML-->
<html>
<head>
<title>Minimum Required Code - Epoch DHTML Javascript Calendar</title>
<link rel="stylesheet" type="text/css" href="epoch_styles.css" />
<script type="text/javascript" src="epoch_classes.js"></script>
<script type="text/javascript">
/*You can also place this code in a separate file and link to it like epoch_classes.js*/
var bas_cal,dp_cal,ms_cal;
window.onload = function () {
dp_cal = new Epoch('epoch_popup','popup',document.getElementById('popup_container'));
};
</script>
</head>
<body>
<h2>Popup</h2>
<form id="placeholder" method="get" action="#">
<input id="popup_container" type="text" />
</form>
<br>
<br>
<form>
<select name="Test">
<option value="1">Select 1</option>
<option value="1">Select 2</option>
<option value="1">Select 2</option>
<option value="1">Select 2</option>
<option value="1">Select 2</option>
<option value="1">Select 2</option>
<option value="1">Select 2</option>
<option value="1">Select 2</option>
<option value="1">Select 1</option>
</select>
</form>
</body>
Thanks for any help
Bart
I have the following problem with the Epoch Calendar (version 106):
If it's next to the calendar popup a <select> then the select box is visible thru the open calendar. This happens with all IE < 7.0 and it doesn't happend with Firefox or with IE 7.0 Beta.
The HTML looks like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--Doctype is not required - can be HTML or XHTML-->
<html>
<head>
<title>Minimum Required Code - Epoch DHTML Javascript Calendar</title>
<link rel="stylesheet" type="text/css" href="epoch_styles.css" />
<script type="text/javascript" src="epoch_classes.js"></script>
<script type="text/javascript">
/*You can also place this code in a separate file and link to it like epoch_classes.js*/
var bas_cal,dp_cal,ms_cal;
window.onload = function () {
dp_cal = new Epoch('epoch_popup','popup',document.getElementById('popup_container'));
};
</script>
</head>
<body>
<h2>Popup</h2>
<form id="placeholder" method="get" action="#">
<input id="popup_container" type="text" />
</form>
<br>
<br>
<form>
<select name="Test">
<option value="1">Select 1</option>
<option value="1">Select 2</option>
<option value="1">Select 2</option>
<option value="1">Select 2</option>
<option value="1">Select 2</option>
<option value="1">Select 2</option>
<option value="1">Select 2</option>
<option value="1">Select 2</option>
<option value="1">Select 1</option>
</select>
</form>
</body>
Thanks for any help
Bart