I have a page: http://mypage.com/items.jsf .
This page takes the following for granted:
- The identifier is set using GET or the ID is set by POST.
Now can I manually call items.jsf? ID = 10
But what I really want to do is a button that calls a function that returns the navigation URL.
public String test()
{
return "10";
}
Now, having the following code in the JSF file .
<h:form>
<h:commandButton action="#{itemsBean.test}" value="Redirect me" />
</h:form>
What I want is that when I click Redirect Me, I want the navigation rule to know that I want to go to: items.jsf? ID = 10
Is it possible? This seems to be a really trivial problem.