Hi,
For some reason, selectionListener in trinidad tree is not hitting the specified method in the backing bean. As such, I am not able to navigate by clicking the nodes of the tree.
The rowDisclosureListener works though . But it is not the functionality I am looking for.
Any suggestion related with selectionListener would be appreciated.
<tr:tree id="treeid" value="#{backing.model}" var="model" rendered="true"
selectedRowKeys="#{backing.rowkeyset}"
selectionListener="#{backing.selectionListen}"
rowDisclosureListener="#{backing.displaySections}"
>
<f:facet name="nodeStamp">
<tr:commandNavigationItem id="personNode" text="#{model.name}"
action="#{backing.tocAction}"
partialSubmit="false">
</tr:commandNavigationItem>
</f:facet>
</tr:tree>
public
String selectionListen(ActionEvent event){ // Also used selectionEvent but in vain
System.out.println("---Inside selectionListen ---");
// rowkeyset.addAll();
return "";
}