Hi
My bounded taskflow contains 4 page fragments (f1,f2,f3,f4). f1 is the default activity.
I use UIShell template. And I have a tree menu on the UIshell that call different taskflows.
This is the code to open the taskflow
public String OpenTaskFlow() {
TabContext tabContext = TabContext.getCurrentInstance();
if (getSelectedNode() != null) {
try {
tabContext.setMainContent(getSelectedNode());
} catch (TabContext.TabContentAreaDirtyException e) {
e.printStackTrace();
}
}
return null;
}
when I Click on the menu , the taskflow is opened and the default activity "f1" is displayed.
IS it possible to pass by the default activity of a taskflow and navigate directly to a specific fragment.