• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

selectionListener in trinidad tree not working

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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 "";
}
 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Sarah, were you able to find a solution. I am facing the same issue and am very confused....

Any help is appreciated!

Thanks,
 
Forget Steve. Look at this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic