Web Developer wrote: > Curious in IE6, the dialog window's background is not transparent. > and also when dragging and dropping regular windows is very buggy it seems... > I see text behind the dialog box that says 'False' and also seems like >
If you see 'False' it is likely that you have an error in your own JavaScript that outputs that word somehow. > graphics are 'missing' in window itself, maybe cause graphics use png > transparency? > Also you cannot see the window itself while dragging it since the > screen goes completely grey. > > Is it supposed to do the above in IE6? > No. I use dialogs all over the place and they are draggable and visible. The gray background can be set in the according CSS file and is not an image but a color with some opaque percentage, check yours, perhaps it is not set correctly (and compare the windows in the examples: do they have the same behavior?). If the window disappears while dragging, check the z-order of other elements on your page and/or raise the z-order of your window. > If IE6 is limited in this capability, can AlphaImageLoader filter can > somehow be placed in Prototype Window class in future maybe to get it > working for IE6? IE6 is limited in showing PNG images (well, every browser is, but IE6 is most limited). The alpha transparency can indeed be set with the AlphaImageLoader filter. But I'd advice against doing it in the code, because doing it multiple times on a page will give you untrackable stills when loading the page (i.e., few seconds freezing both your page and IE) when you have a fair number of them. The Dialogs do not use PNG images, I believe, but even if they do, their transparency is not an issue for the Dialog windows (i.e., they are not transparent anyway). -- Abel _______________________________________________ Javawin mailing list [email protected] http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com
