Hi.
I'm experiencing the following problem with a completion/hint on 'select'.
When 'select' gains focus there is a possibility to go through all options by typing in a first symbol of the option.
The problem is that the behaviour is different for the cases:
1. window with 'select' tag is opened directly.
2. window with 'select' tag is opened from a parent window.
For the second case completion/hint on 'select' does not work for IE 6.0
(firefox 2.x works for the both cases, a bit another way, but nevertheless)
I suspect that a case is in restrisctions for window.open.
Here is my examle:
parent window:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"<html>
<head>
<script type="text/javascript">
function openW(url){
window.open(
url,
'childW',
'width=986,height=650,location=no,menubar=yes,stat us=yes,resizable=yes,scrollbars=1'
);
}
</script>
</head>
<body>
<a href="./test.html" onclick="openW('./test.html');"><b>open child window</b></a>
</body>
</html>
child window:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"<html>
<body>
<select size="1">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</body>
</html>
I'm experiencing the following problem with a completion/hint on 'select'.
When 'select' gains focus there is a possibility to go through all options by typing in a first symbol of the option.
The problem is that the behaviour is different for the cases:
1. window with 'select' tag is opened directly.
2. window with 'select' tag is opened from a parent window.
For the second case completion/hint on 'select' does not work for IE 6.0
(firefox 2.x works for the both cases, a bit another way, but nevertheless)
I suspect that a case is in restrisctions for window.open.
Here is my examle:
parent window:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"<html>
<head>
<script type="text/javascript">
function openW(url){
window.open(
url,
'childW',
'width=986,height=650,location=no,menubar=yes,stat us=yes,resizable=yes,scrollbars=1'
);
}
</script>
</head>
<body>
<a href="./test.html" onclick="openW('./test.html');"><b>open child window</b></a>
</body>
</html>
child window:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"<html>
<body>
<select size="1">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</body>
</html>