I'm trying to navigate through pages in icefaces portlet(Liferay) but I can't get it to work.
<navigation-rule>
<from-view-id>/AdmissionApplication/Application.iface</from-view-id>
<navigation-case>
<from-outcome>y</from-outcome>
<to-view-id>/StudentPage/StudentMainPage.iface</to-view-id>
</navigation-case>
</navigation-rule>
and here is the button action
public String button1_action() {
//return null means stay on the same page
return "y";
}
I tried to put .jsp extension and .iface and many options I found in the forums put I can't get them to work. Could any body help me?