t:jscookmenu randomly stopped working
Hi all,
I recently began a program using jsf and one of the components I am using is the jscookmenu. Originally it had been working but then I added some other features and it stopped working. I then removed everything I had added and it is not working still. Here is the code for the menu:
<h:form>
<input type="hidden" name="jscook_action" />
<t:jscookMenu layout="hbr" theme="ThemeOffice">
<t:navigationMenuItem itemLabel="Reports">
<t:navigationMenuItem itemLabel="Work Item Reports" action="#{navBean.goToSelectReport}"/>
</t:navigationMenuItem>
</t:jscookMenu>
</h:form>
The backing bean code:
public String goToSelectReport() {
System.out.println("At least it is running the validation method");
return ("goToReportSelect");
}
and the pertinent faces-config code:
<navigation-rule>
<from-view-id>*</from-view-id>
<navigation-case>
<from-outcome>goToReportSelect</from-outcome>
<to-view-id>/pages/selectReport.xhtml</to-view-id>
</navigation-case>
</navigation-rule>
The .xhtml is because I am using facelets. I am using tomahawk 1.1.5. The problem seems to be the action is never being called because the System.out.println string does not appear in the stdout log.
Thanks for any help you can give

