Hallo,
habe hier etwas gefunden, um diesen Effekt auszuschalten. Wir hatten das Problem ja mal in der Datenbank zur Scriptprogrammierung. (
http://www.free.dominoserver.de/computer/noteslibrary.nsf ) Da habe einige von uns über das Web auch nur eine graue Fläche anstelle der erwarteten Ansicht gesehen.
View applet doesn't display view
Magnus
16 Sep 2002, Rating 4.27 (out of 5)
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);
}
eknori