Workaround to Gray Box Issue in IE with the View Applet

Author: Tripp W Black

Created: 02/01/2003 at 07:22 PM

 

Category:
Notes Developer Tips
Views, Bugs/Workarounds

Do you from time to time have problems with your view applet just
displaying a grey area in your browser? This happens because of a bug in IE
5.5( possibly 6 too). Add the following code to the OnLoad event of your
$$ViewTemplate form and the problem be solved.

Code

applView = document.applets.view;
if (applView != null) {
while (!applView.isActive()) {};
applView.reshape(0,0,applView.offsetWidth,applView.offsetHeight);
}



previous page