UI resizable with no child handler
Hello!
I try to use the ui.resizable with an outer (south) handler, but it
not works.
Code:
jQuery('#cntr').resizable({
handles: {
s: jQuery('#southHandler')
}
});
where the #cntr is a div, and the #southHandler is NOT a child of
#cntr.
#aDiv > #mainCntr > #cntr (and some siblings)
and the handler:
#aDiv > #southHandler
where the #mainCntr and the #southHandler are siblings
In the docs: "If the handle is not a child of the resizable, you can
pass in the DOM node or a valid jQuery object directly."
I read the source aswell, but I didn't find where set the outer
handles.