Philip,
Thanks for the quick response. That isn't exactly what I am talking about. I have drag and drop working fine in my tree (can drag from folder to folder). What I actually want is to have a 'drag handle'. This is supported by sriptaculous (is the backing for the icefaces drag and drop, correct?)
So this is what it would look like in scriptaculous:
Code:
<div id="draggable">
<span id=drag_handle"><img src="someimg.png"></span>
<span id="content">
<!-- Extended content that does not respond to mouse dragging -->
</span>
</div>
<script>
new Draggable('draggable', {scroll:window,
handle:'drag_handle',
revert:true,
ghost:true});
</script>
I'm guessing from the documentation, that this is not supported in Icefaces, but I thought I would ask :)
thanks,
Dustin