How to open - call Task flow from tree menu
This example assumes that you work have UIShell template as a template for your page 1- After creating the tree that contains a tree hierarchy of the system menus , in jsf page click on the tree component then open the property inspector for the tree 2- on the selection listener property of the tree , cut the selection listener value , for example #{bindings.UserAppMenu.treeModel.makeCurrent}" and create new selection listener on the managed bean , name it for example #{menuBean.onTreeMenuSelection} 3- make sure that the selectedRowKey property of the tree is null 4- the jsf code should be like this <af:tree value="#{bindings.MenuTreeVo.treeModel}" var="node" selectionListener="#{menuBean.onTreeMenuSelection}" rowSelection="single" binding = "#{menuBean.menuTree}" ...