Setting the content of a scroll pane to the same label
twice erases the scroller completely (scrollbars
included).
It shows up in the example supplied with the
distribution by selecting allthe label links then
starting from label 1 again - this results in a grey
box.
NS6.1 does the same, though the scrollpane fails to
work completely there...
If this is intended behavior, it shoud be documented
and a workaround mentioned.
Logged In: YES
user_id=13475
I forgot:
Bug shows up in release, snapshot and alternate
implementation. Refreshing the page restores original
appearence.
Logged In: YES
user_id=13475
I can get a very similar (and I bet related) behavior with
the attached file (which highlights a separate bug...).
After getting rid of the error box by changing dynimage.js
as follows (look around line 71):
<pre>
--- dynimage.js Tue Oct 16 11:19:42 2001
+++ dynimage.js~ Thu May 03 19:47:18 2001
@@ -68,9 +68,6 @@
this.setHTML('<img name="'+this.id+'Image"
src="'+imgObject.src+'"'+wh+' border=0>');
}
else if (this.created) {
- if(!this.doc.images[this.id+'Image']) {
- this.doc.images[this.id+'Image']
=new Image();
- }
this.doc.images[this.id+'Image'].src =
this.img.src;
}
};
</pre>
Clicking on the links will result in the erasure of the
content...