3/2/2010 4:18:51 AM
Title:
hdivided box
how to stop dragging function of divider in hdivided box? i don't want drag the divider i want that function through click i did it.. but i don't know how to remove dragging function from divider in flex 3 please help me?
3/2/2010 4:42:34 AM
You can handle the dragging event of hdivided box and for the event to stop propagation using
event.stopPropagation() or
event.stopImmediatePropagation()
using this inside your dragging event listener will force the event to stop and implement any dragging
3/2/2010 5:08:47 AM
i tried it but it does not work.. please give one sample...
3/2/2010 2:42:18 PM
events on HDividedBox are not cancelable, means they cannot be cancelled. so stop propagation wont work with those events.
3/2/2010 10:14:02 PM
then how can i remove dragging function of slider any possibility for that? please help me..