I'm running into a strange and obscure issue in jQuery UI-layout. I have a dropdown in one of my panes, and whenever you click on it, it opens, but you can select anything.
The issue seems to have occured in the past, as documented here: https://groups.google.com/forum/#!topic/jquery-ui-layout/ZaJxX3NbPx4
But in that post they said it was tied to showOverflowOnHover - an attribute I have set to false, both by default in the plugin and again in each instance.
Here is my initialization code:
$('.splitter').layout({
resizeWhileDragging: true,
sizable: false,
animatePaneSizing: true,
fxSpeed: 'slow',
east__size: '70%',
showOverflowOnHover: false,
enableCursorHotkey: false
});
$('.splitter_inside').layout({
resizeWhileDragging: true,
sizable: false,
animatePaneSizing: true,
enableCursorHotkey: false,
showOverflowOnHover: false,
fxSpeed: 'slow',
south__size: "40%"
});
'splitter_inside' is inside of 'splitter'.
Anyone else run into this, or have any idea on how to fix it? I'm working on producing a fiddle, but having some trouble.