D
Dave
We are developing a web page that shows large graphics. To provide
more screen space for the graphics, we allow the user to popup a
window that places itself over the top part of the browser. This popup
contains a control panel that tells the main window what to display.
Because we don't want to require that the user continually ALT-TAB to
go between the main window and the popup (all user controls are on the
popup) in the control panel popup, we have the following:
in the function called by onLoad in the popup, the following line is
executed:
window.onblur= keepFocus;
later in the .js file we have:
function keepFocus() {
self.focus();
}
The problem is that when the user tries to use a dropdown select
control the list drops down and immediately rolls back up, making it
inoperable.
This doesn't happen in the Netscape/Mozilla family or browsers. Nor
does IE report an error.
Any ideas would be appreciated.
Dave
more screen space for the graphics, we allow the user to popup a
window that places itself over the top part of the browser. This popup
contains a control panel that tells the main window what to display.
Because we don't want to require that the user continually ALT-TAB to
go between the main window and the popup (all user controls are on the
popup) in the control panel popup, we have the following:
in the function called by onLoad in the popup, the following line is
executed:
window.onblur= keepFocus;
later in the .js file we have:
function keepFocus() {
self.focus();
}
The problem is that when the user tries to use a dropdown select
control the list drops down and immediately rolls back up, making it
inoperable.
This doesn't happen in the Netscape/Mozilla family or browsers. Nor
does IE report an error.
Any ideas would be appreciated.
Dave