|
From: Raymond I. <xw...@ya...> - 2003-04-28 14:38:41
|
--- Ramesh Pallikara <ra...@in...>
wrote:
> hi,
>
> there's seems to be a painting issue with mozilla
> when a dynlayer
> containing a visible ioelement child is dragged. The
> child layer changes
> it's position even before the parent does. anybody
> experienced this ???
One quick solution is to set the ioelement visible
property to false during a drag event.
lyr.addEventListener({
ondragstart:function(e){
ioelm.setVisible(false);
},
ondragend:function(e){
ioelm.setVisible(true);
}
});
--
Raymond Irving
> is there a way to overcome this???
>
> regardz,
> ramesh pallikara
>
> --
> QOTD:
> "I've always wanted to work in the Federal Mint.
> And then go on
> strike. To make less money."
>
>
>
>
>
-------------------------------------------------------
> This sf.net email is sponsored by:ThinkGeek
> Welcome to geek heaven.
> http://thinkgeek.com/sf
> _______________________________________________
> Dynapi-Dev mailing list
> Dyn...@li...
>
http://www.mail-archive.com/dyn...@li.../
__________________________________
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.
http://search.yahoo.com
|