Problem with JSF RI Sandbox ContextMenu Component...
I tried the code on the official site :
https://javaserverfaces.dev.java.net/sandbox/components/contextMenu.html
<h:outputText id="text" value="This should have a context menu!">
<risb:contextMenu width="225px">
<risb:menuItem value="Test!" url="http://www.yahoo.com"/>
<risb:menuItem>
<h:outputLink value="https://javaserverfaces.dev.java.net/">
<h:outputText value="JSF RI Homepage"/>
</h:outputLink>
</risb:menuItem>
<risb:menuItem>
<h:commandLink action="home" value="Home"/>
</risb:menuItem>
</risb:contextMenu>
</h:outputText>
The problem is that the contextMenu is permanently displayed just Above the outPutText...
I use a web application with facelets. I just added the jars :
shale-remoting-1.0.4.jar
jsf-ri-sandbox-0.9.jar
Maybe i have to change other things in my project anyone can help?

