Hello everyone!
I was wondering if someone can help me with this problem I have with <rich:dropDownMenu> and back button. On a page with table of educational institutions (<h:dataTable>) I have <rich:dropDownMenu> component in each row of that table. Items in that menu are something like details for each institution (contacts, programs, admissions, etc.). Menu looks like this:
<rich:dropDownMenu event="onclick" hideDelay="50">
<f:facet name="label">
<h:graphicImage value="/images/rootgen/menuActivator.png" />
</f:facet>
<rich:menuItem value="Contact" action="#{institutionBean.institutionContact}" actionListener="#{institutionBean.idListener}">
<f:attribute name="idInstitution" value="#{row.idInstitution}"/>
</rich:menuItem>
...
</rich:dropDownMenu>