I'm using Seam 2.0.GA, RichFaces 3.2.1.GA in Tomcat 6. I have a rich:dropDownMenu in a rich:dataGrid as follows:
<a:outputPanel id="prodPanel">
<rich:dataGrid columns="2" elements="6" value="#{products}" var="product" rendered="#{products.rowCount>0}" style="float:left;width:930px">
<rich:panel style="height:375px">
<f:facet name="header"><h:outputText value="#{product.name}"/></f:facet>
<rich:dropDownMenu value="More actions..." style="width:100px" rendered="#{identity.loggedIn}">
<rich:menuItem submitMode="none" icon="images/edit.png">
<s:link value="Edit" action="#{productManager.createObject}" >
<f:param name="prodId" value="#{product.id}"/>
</s:link>
</rich:menuItem>
</rich:dropDownMenu>
......
</rich:dataGrid>
</a:outputPanel>