|
From: <bo...@co...> - 2003-10-01 19:54:56
|
Hi!
I have an object (example DynLayer) name "b". It's have a parent DynLayer "b".
I accepted the DragEvent on "a", and I want tu cut from "b" (to the top).
If i remove the element, it's a bad think. I try to remove the element,
because it's not work.
I try to change the parent variable:
ondragstart:
function(e)
{
var o=e.getSource();
o.parent=o.parent.parent;
},
beacuse nothing happened.
Any idea?
Cow
|