Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using ice:menuPopup to create menus on tree nodes. In jspx page I've something like this

<ice:tree id="tree" value="#{tree.model}" var="item" imageDir="./xmlhttp/css/xp
                                                                         /css-images/">  
      <ice:treeNode>  
           <f:facet name="icon">  
                 <ice:panelGroup style="display: inline">  
                         <h:graphicImage value="#{item.userObject.icon}"/>  
                 </ice:panelGroup>  
           </f:facet>  
           <f:facet name="content">  
                 <ice:panelGroup style="display: inline" menuPopup="menuPopupEffects">  
                       <ice:commandLink actionListener="#{tree.Url}" value="#
                                                              {item.userObject.text}"/>   
                 </ice:panelGroup>  
           </f:facet>  
                 <ice:menuPopup id="menuPopupEffects">  
                       <ice:menuItem value="Open" actionListener="#{tree.NodeValue}">  
                              <f:param name="effectType" value="Open"/>  
                      </ice:menuItem>
                      <ice:menuItem value="Close">  
                              <f:param name="effectType" value="Close"/>  
                      </ice:menuItem>  
                      <ice:menuItem value="Send">  
                              <f:param name="effectType" value="Send"/>  
                      </ice:menuItem>  
                 </ice:menuPopup>  
</ice:treeNode> 

The problem is that the actionListener="#{tree.NodeValue}" never gets called. Can any one tell me Where I'm wrong?

share|improve this question

2 Answers

Try to move ice:menuPopup..../ice:menuPopup that block up, insert that block into the line just below:

ice:commandLink actionListener="#{tree.Url}" value="#
                     {item.userObject.text}"

Thus they in the same panelGroup. It works for me this way, but I am still use icefaces 1.8.

share|improve this answer

thaks for replay, it works for fine, but i have new problem

currently i am using menupopup and adding menu-items from backing bean.

<ice:menuPopup id="menuPopupEffects">  
    <ice:menuItems value="#{tree.menuList}"/>  
</ice:menuPopup>  

<ice:menuPopup id="menuPopupEffects">
   <ice:menuItems value="#{tree.menuList}"/>
</ice:menuPopup>

Backing bean

m_menu = new MenuItem();              
m_menu.setActionListener(this.createMethodBinding("NodeValue"));  
m_menu.setValue(sa_leafNode[i]);  
m_menu.setId(sa_leafNode[i]);  
l_menuList.add(m_menu);  


MethodBinding createMethodBinding(String method){          
         Class[] args = {ActionEvent.class};  
         MethodBinding mb = FacesContext.getCurrentInstance().getApplication().createMethodBinding("#{tree." + method + "}", args);  
         return mb;  
}  

m_menu = new MenuItem(); m_menu.setActionListener(this.createMethodBinding("NodeValue")); m_menu.setValue(sa_leafNode[i]); m_menu.setId(sa_leafNode[i]); l_menuList.add(m_menu); MethodBinding createMethodBinding(String method){ Class[] args = {ActionEvent.class}; MethodBinding mb = FacesContext.getCurrentInstance().getApplication().createMethodBinding("#{tree." + method + "}", args); return mb; }

my problem is i am getting the menuitems but they are not get fired (ActionListener method not get called)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.