在我的JSF项目中,我有一个带有多个commandLink的静态导航树,如:
<h:commandLink id="navlinksearchperson"
action="#{bean.someAction}"
value="#{messages['menu.person']}"
actionListener="#{styleBean.changeSelection}">
</h:commandLink>
动作监听器如下所示:
@RequestScoped
@Named("styleBean")
public class StyleBean {
public void changeSelection(ActionEvent event) {
if (event.getComponent() instanceof HtmlCommandLink) {
((HtmlCommandLink) event.getComponent()).setStyle("font-weight : bold; color : white");
}
}
}
我想要达到的目的是突出显示已单击的链接,以便用户准确查看当前查看的导航链接/路径。将调用该事件,但不设置/呈现样式。
我是否遗漏了某些内容,或者ActionEvent是否在正确的阶段设置了UIComponent的属性?
更新 行动如下:
public String init() {
if (conversation.isTransient()) {
conversation.begin();
}
/*
* Service call for request query
*/
return "/views/list.xhtml";
}