Adnan
Adnan

Reputation: 4607

JSF <h:commandButton action> not working

<h:commandButton action> is not working in following code snippest.

bean(Employee.java):-

        public String deleteEmployee(){
        return "success3";
            }

JSF page(delete-employee.xhtml):-

<h:form>
    <h:commandButton action="employee.deleteEmployee" type="submit" value="delete"/>
</h:form> 

Faces-config.xml:-

    <managed-bean>
      <description>Employee navigation</description>
      <managed-bean-name>employee</managed-bean-name>
      <managed-bean-class>erpJavaFiles.Employee</managed-bean-class>
      <managed-bean-scope>application</managed-bean-scope>
    </managed-bean>

<navigation-rule>
        <from-view-id>/add-Employee.xhtml</from-view-id>
        <navigation-case>
            <from-outcome>success</from-outcome>
            <to-view-id>/CRM.xhtml</to-view-id>
            <redirect/>
        </navigation-case>
        <navigation-case>
            <from-outcome>failure</from-outcome>
            <to-view-id>/home.xhtml</to-view-id>
            <redirect/>
        </navigation-case>
    </navigation-rule>

    <navigation-rule>
        <from-view-id>/delete-employee.xhtml</from-view-id>
        <navigation-case>
            <from-outcome>success3</from-outcome>
            <to-view-id>/CRM.xhtml</to-view-id>
        </navigation-case>
    </navigation-rule>

Second navigation rule is not working but the first navigation rule is working. Thanks in advance.

Upvotes: 1

Views: 7033

Answers (1)

Matt Ball
Matt Ball

Reputation: 359776

You misspelled employee in the <from-view-id>.

<from-view-id>/delete-employee.xhtml</from-view-id>

Upvotes: 1

Related Questions