jsf primefaces'更新中心面板'

时间:2012-09-07 07:17:05

标签: jsf primefaces

我正在使用带有primefaces的jsf。我根据用户在侧面板菜单中的选择成功更新了中心面板。但是没有一个功能正在发挥作用。

换句话说:

我有一个xhtml,所有菜单都应出现在所有页面中。我正在更新中心面板。 但是,无法识别在中心面板中更新的页面的相应托管bean。

有什么建议吗?

更新:代码

public void show(){ 
  String node=selectedNode.toString(); 
  List<Pages> pagesList=loginsessinbean.findPageByTitle(node);
  linkValue = pagesList.get(0).getPagePath();    
  System.out.println("Selection=="+linkValue); displayModule();
}
public String displayModule() {
  String url="localhost:8080/MPCS-war/faces"+linkValue;
  System.out.println("URL ---"+url);
  return url;
} 

0 个答案:

没有答案