How do you update a Tree ContextMenu programmatically?
I have defined the Menu like this:
<p:contextMenu id="treeMenu" widgetVar="treeMenuWidget" for="treeSingle" model="#{treeBean.model}"/>
And then in the bean, getModel is defined like this:
public MenuModel getModel() {
model = new DefaultMenuModel();
log.debug("node=<" + node + ">");
if (node != null){
NodeInfo info = node.getNodeInfo();
log.debug("info=<" + info + ">");
if (info != null){
if (info.isWritable()){
if (info.isLeaf()){
MenuItem item = new MenuItem();
item.setValue("Edit");
item.setIcon("ui-icon-pencil");
item.addActionListener(FacesUtil.createMethodActionListener("#{treeBean.edit}",
Void.class,
new Class[] {ActionEvent.class}));
model.addMenuItem(item);
}else{
MenuItem item = new MenuItem();
item.setValue("View");
item.setIcon("ui-icon-search");
item.addActionListener(FacesUtil.createMethodActionListener("#{treeBean.view}",
Void.class,
new Class[] {ActionEvent.class}));
model.addMenuItem(item);
}
}else{
MenuItem item = new MenuItem();
item.setValue("View Read Only");
item.setIcon("ui-icon-search");
item.addActionListener(FacesUtil.createMethodActionListener("#{treeBean.viewAll}",
Void.class,
new Class[] {ActionEvent.class}));
model.addMenuItem(item);
}
}
}
return model;
}
When I have the tree defined like this, onNodeSelect() and getModel() functions never get called to update the current tree node or the contextmenu:
<p:tree id="treeSingle"
value="#{treeBean.root}"
var="node"
selectionMode="single"
selection="#{treeBean.selectedNode}"
dynamic="false"
cache="false"
style="width:100%;height:100%;">
<p:treeNode>
<c:if test="#{!empty node.icon}">
<f:attribute name="icon" value="#{node.icon}"/>
</c:if>
<h:outputText value="#{node}"/>
</p:treeNode>
</p:tree>
If I add this listener to the tree, the onNodeSelect and getModel functions get called, but then I am noticing the contextmenu appears with the old node's context info and then disappears on its own. And then I have to right click the node again for it to display the context menu, at which time it displays correctly and with the correct node info.
<p:ajax event="select" update=":treeForm:treeMenu" listener="#{treeBean.onNodeSelect}" />
So, in essence, it seems to me the functionality to support a programmatic context menu is broken or not supported at all. Is this correct?
How can I correctly display a programmatic context menu with content that changes from node to node?
It seems the problem that I am seeing is that the call that shows the context menu is being triggered before the context menu is updated and because of this it is somehow going away / being hidden - and then I have to right click on the node again for it to reappear with the updated content.
I have probably spent two days on this one trying to solve the problem and to no avail.
Also, if I add the following call to redisplay the contextmenu programmatically so that I don't have to right click on it again, I get an error:
Code to redisplay context menu so I don't have to click it again:
RequestContext.getCurrentInstance().execute("treeMenuWidget.show()");
Error message:
Uncaught TypeError: Cannot read property 'pageX' of undefined
And the whole reason that I started trying to do this programmatically is because when I tried using the TreeNode nodeType attribute and different context menus for different node types, after adding 10 or so menus, if I simply rearranged the order of the menus in the xhtml page then they wouldn't be assigned to the correct node, which seems to be a bug. Therefore, I am now trying to solve it programmatically but getting other problems.
Well, I think I know what the problem is but I don't quite know how to fix it yet...
I added an alert to this JavaScript call in Menu.js:
bindTree: function() {
var nodeSelector = this.jqTargetId + ' ' + (this.cfg.nodeType ? 'li.' + this.cfg.nodeType + ' .ui-tree-selectable': '.ui-tree-selectable'),
event = this.cfg.event + '.tree',
_self = this;
$(document).off(event, nodeSelector)
.on(event, nodeSelector, null, function(e) {
window[_self.cfg.targetWidgetVar].nodeClick(e, $(this));
alert(_self.cfg.nodeType);//cjr
_self.show(e);
e.preventDefault();
});
},
And here is what I am seeing:
alert('root');
alert('container');
alert('list');
alert('entry');
But the problem is that I have this kind of nesting:
nodeType=root
nodeType='container'
nodeType='list'
nodeType='entry'
nodeType='list'
So, nodes #3 and #5 are of the same type and I think that because list nodeType is already being used for node #3, then it is not used again for node #5 and node#5 ends up with the menu of the parent (node #4).
Is this a bug?
Can you please give me a clue as to how to fix it?
BTW - My trees are being build programmatically based on data that is dynamic and which I am not generating so I have no control about how many times a list node may appear nested or any other node types, for that matter.
I eagerly await someone's response...