I have a pare which is requires a GET-paremeter (int id). is also has with some textfields (for filtering)
<h:form>
//some textfields
<h:commandButton value="Anwenden" actionListener="#{bean.acceptFilters}" action="">
<f:param name="id" value="#{bean.logbookId}" />
</h:commandButton>
<h:form>
Now, I have two problems:
- I need somehow a GET-Request to allow bookmarking of the search results (like Google)
- The parameter "id" is also not passed in the URL when i post the form (but is required)
The parameters in the url are lost when i click submit... internally they exist.