JSF导航无法在RichFaces中运行

时间:2011-01-10 18:00:04

标签: jsf richfaces

我有我认为简单的JSF导航设置,但当我点击h:commandButton页面重新加载时,而不是我想要加载的页面。 faces-config片段在这里:

    <navigation-rule>
    <from-view-id>/index.jsf</from-view-id>
    <navigation-case>
        <from-outcome>hello</from-outcome>
        <to-view-id>/next.jsf</to-view-id>
    </navigation-case>
</navigation-rule>

index.xhtml文件包含:

<f:view>
    <a4j:region id="topRegion">
        <rich:page pageTitle="myapp" markupType="xhtml" id="top">
<f:facet name="header">
<h:form>
    <rich:toolBar height="45" itemSeparator="disc">
        <rich:toolBarGroup location="left">
            <h:form name="selectForm">
                <h:panelGrid columns="5" style="padding: 2px;">
                    <h:outputText style="text-align: center" value="Node Select " />
                    <h:selectOneMenu id="nodes" value="#{MyBacking.chosenNode}">
                        <f:selectItems value="#{MyBacking.nodes}" />
                    </h:selectOneMenu>

                    <h:commandButton value="Retrieve" styleClass="ctrlBtn"
                        id="retrieveBtn" style="margin-bottom: 2px;"
                        action="hello"
                        image="/img/btnRetrieve26.png" />
                </h:panelGrid>
            </h:form>
        </rich:toolBarGroup>
    </rich:toolBar>
</h:form>

就这么简单。谁能告诉我为什么它不起作用?

据我所知,hello的from-outcome应该由h:commandbutton使用并加载next.xhtml文件。

1 个答案:

答案 0 :(得分:3)

您的文件是.xhtml而不是.jsf

你试过了吗?

<navigation-rule>
    <from-view-id>/index.xhtml</from-view-id>
    <navigation-case>
        <from-outcome>hello</from-outcome>
        <to-view-id>/next.xhtml</to-view-id>
    </navigation-case>
</navigation-rule>