IE CSS for panelGroupLayout 100% Height
JDeveloper 11.1.1.4.0
I've been trying to figure out a way to get around this and it seems like in IE, the inline style of the panelGroupLayout just ignores whatever styleClass i set for the height.
Basically, i'm trying to set the panelGroupLayout's height to 100% since it doesn't behave as such in IE, (works great in firefox :)).
So my initial approach is the obvious:
af|panelGroupLayout
{
height:100%;
}
but this approach was ignored, and upon careful debugging, i noticed how the innate inline-style of the panelGroupLayout overrides my height to be auto. So as my last resort, i end up writing directly in the panelGroupLayout's inlineStyle = "height:100%"
While this might have solved my issue, i get a warning (highlighted in red) in jdeveloper. I wonder if anyone got around this issue.
Thanks.
-Marvin