pode estar acontecendo pois não aparece panel
estou usando windows 7,tomcat 7,java 6,jsf 2.0,richfaces 4
jar :
jar usados:
richfaces-components-api-4.0.0.20110209-M6.jar
richfaces-components-ui-4.0.0.20110209-M6.jar
richfaces-core-api-4.0.0.20110209-M6.jar
richfaces-core-impl-4.0.0.20110209-M6.jar
alguém pode me ajudar …agradeço…
abs
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
<script>
function getRightTop(ref) {
var position = new Object();
position.top = 0; //ref.offsetTop;
position.left =0; // ref.offsetLeft+ref.clientWidth+6;
return position;
}
</script>
<rich:message></rich:message>
<h:commandButton value="Call the popup">
<rich:componentControl target="popup" operation="show" />
</h:commandButton>
<rich:popupPanel id="popup" modal="true" resizeable="true"
onmaskclick="#{rich:component('popup')}.hide()">
<f:facet name="header">
<h:outputText value="Simple popup panel" />
</f:facet>
<f:facet name="controls">
<h:outputLink value="#"
onclick="#{rich:component('popup')}.hide(); return false;">
X
</h:outputLink>
</f:facet>
<p>Additionally there you could check how to handle the clicks
outside the panel.</p>
<p>In this sample the click outside - closes the panel as well as
clicking hide control in the header</p>
</rich:popupPanel>
</ui:composition>
tambem estou com o mesmo problema, apenas não posso mudar o richfaces pois o projeto todo já esta em richfaces, que funcionava certinho no jsf 1.2 e richfaces 3.3.3
Eu estava com um problema semelhante. O popupPanel não aparecia quando eu utilizava o atributo binding ou rendered. Só funcionou quando utilizei o show e atribui um boolean de um bean…