2 Dialogs, 2 Sortable Lists

2 Dialogs, 2 Sortable Lists


I have 2 dialog windows each containing a sortable list. (using the
following code)
$('#layout_editor_div, #layout_editor_cp').sortable( {
placeholder: 'ui-state-highlight',
items: '.data_block_edit',
forcePlaceholderSize: true,
handle:'h3'
});
$('#layout_editor_div').sortable('connectWith','#layout_editor_cp');
I've found 2 problems. 1 is that overflow is set to hidden on a
dialog, which, at the moment, i'm setting to visible using firebug.
This causes elements that you attempt to drag out of the dialog to
disappear.
The 2nd problem is that the list (#layout_editor_div) doesn't connect
with #layout_editor_cp. So when you drag an element over to it, no
placeholder appears and you can't drop the element into the list.
Thoughts?