Marc Dworkin added a comment - 08/Dec/08 02:08 PM Hi,
I ran into this issue and hacked the following fix in inputtaglib.groovy
def zIndexStyle = attrs.get('zIndex')
if ( zIndexStyle ) {
zIndexStyle = " style=\"z-index:" + zIndexStyle + "\" ";
}
out << """
<div class="yui-skin-sam yui-ac" ${zIndexStyle} >
...
And then set the zIndex in the wrongfully covered gui:autoComplete to be higher then the one wrongfully covering it.
Hi,
I ran into this issue and hacked the following fix in inputtaglib.groovy
def zIndexStyle = attrs.get('zIndex')
if ( zIndexStyle ) { zIndexStyle = " style=\"z-index:" + zIndexStyle + "\" "; }
out << """
<div class="yui-skin-sam yui-ac" ${zIndexStyle} >
...
And then set the zIndex in the wrongfully covered gui:autoComplete to be higher then the one wrongfully covering it.