a4j:从action方法返回的commandButton丢失了css-styles

时间:2015-06-11 08:49:21

标签: css jsf jsf-2 richfaces commandbutton

我使用的是Mojarra 2.1和RichFaces。

我有以下行动方法:

public String doSave() {
    //do some
    return "someView";
}

通过引用

来调用
<a4j:commandButton action="#{theBean.doSave}" />

和视图文件someView.jspx。但是在调用了action方法之后,我被重定向到了适当的视图,但是丢失了该视图中的所有css样式。实际上,页面的head标签是空的:

<head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>

someView页面限制为会话范围的bean。

我真的不知道它可以捆绑什么?需要一些建议。

顺便说一句,它与h:commandButton完全正常。它是一个richFaces的bug吗?

0 个答案:

没有答案