Issue Details (XML | Word | Printable)

Key: GRAILSPLUGINS-542
Type: Bug Bug
Status: Open Open
Priority: Major Major
Assignee: Matthew Taylor
Reporter: Matthew Taylor
Votes: 3
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Grails Plugins

Fix IE 7 Issues

Created: 17/Oct/08 12:17 PM   Updated: 07/Aug/09 07:53 PM
Component/s: Grails-UI
Affects Version/s: Grails-UI 1.0
Fix Version/s: Grails-UI 1.2

Time Tracking:
Not Specified

File Attachments: None
Image Attachments:

1. Picture 3.png
(5 kB)
Issue Links:
dependent
 


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.