如何在rich:dropDownMenu中指定导航LINK?

时间:2014-09-10 11:32:22

标签: java-ee richfaces managed-bean

使用Richfaces我正在尝试创建UI。我关注showcase链接

演示代码DemoCode.java无效。我无法指定链接,因此我可以使用导航链接中的链接从一个页面导航到另一个页面。

不幸的是,演示代码有虚拟链接。所以我无法理解如何指定其他页面链接。

2 个答案:

答案 0 :(得分:0)

我不确定你期望bean看起来像什么,它有很多这样的方法:

public String doNew() {
    this.current = "New";
    return null;
}

来源为here

答案 1 :(得分:0)

<rich:menuItem label="Add New" onclick="document.location.href='page2.xhtml'"  icon="/images/book-add-icon.png">

onclick解决了我的问题。我按照链接来解决问题。

http://livedemo.exadel.com/richfaces-demo/richfaces/dropDownMenu.jsf?c=menuItem