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
|