0 Replies Latest reply on Nov 2, 2011 10:07 PM by rohand

    Problem with rich:contextMenu

    rohand

      I am using rich:contextmenu. See the following code.

      <h:form id="menu">
              <rich:contextMenu styleClass="normal" attached="false" id="tableMenu" submitMode="server" >
                  <rich:menuItem immediate="true" action="form" >
                      <h:outputText value="Edit" ></h:outputText>
                      <f:param name="selectedRowId" value="{rowId}" ></f:param>
                  </rich:menuItem>
              </rich:contextMenu>
          </h:form>
      

       

      When clicekd on context menu the user is directed to the new page.

       

      However I realized that although user is redirected to the other page, the url is not getting updated with new page. URL still shows the older page.

       

      The action mentioned in above code is configured in navigation rule to display new page.

       

      Anyone has idea what is causing the problem?