[
https://issues.jboss.org/browse/RF-11963?page=com.atlassian.jira.plugin.s...
]
VG VG commented on RF-11963:
----------------------------
This issue seems to be due to the css rule in the .rich-tabpanel-content-position class:
"position : relative"
Overriding it like this
.rich-tabpanel-content-position {
position : inherit;
}
fix the issue. BUT, is there any side effect ? what is the purpose of this css rule ? (fix
some old broken web browser behavior ??)
RF 3.3.3 and FireFox10: rich:dropDownMenu opens at a wrong places
when embedded in a rich:tabPanel
--------------------------------------------------------------------------------------------------
Key: RF-11963
URL:
https://issues.jboss.org/browse/RF-11963
Project: RichFaces
Issue Type: Bug
Security Level: Public(Everyone can see)
Affects Versions: 3.3.3.Final
Environment: Firefox 10
Reporter: VG VG
The rich:dropDownMenu opens at a wrong place when it is embedded in a rich:tabPanel.
We can see the bug on the demo site :
http://livedemo.exadel.com/richfaces-demo/richfaces/dropDownMenu.jsf?tab=...
Here is also a very simple page that show the problem. If you remove the rich:tabPanel et
rich:tab tags the bug does not appear.
<%@ page contentType="text/html;charset=UTF-8"%>
<%@ taglib
uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib
uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib
uri="http://java.sun.com/jsp/jstl/core"
prefix="c"%>
<%@ taglib
uri="http://richfaces.ajax4jsf.org/rich"
prefix="rich"%>
<HTML>
<f:view>
<head>
</head>
<body>
<h:form>
<rich:tabPanel>
<rich:tab label="tab">
<rich:toolBar>
<rich:dropDownMenu >
<f:facet name="label">
<h:outputText value="Menu" />
</f:facet>
<rich:menuItem value="item 1">
</rich:menuItem>
<rich:menuItem value="item 2" >
</rich:menuItem>
</rich:dropDownMenu>
</rich:toolBar>
</rich:tab>
</rich:tabPanel>
</h:form>
</body>
</f:view>
</HTML>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira