I have a Page that is called with a request parameter id that is used to select the drop down elements
<h:selectOneMenu value="#{bean.selectedService}">
<f:selectItems value="#{bean.getServices(param.id)}" var="_s"
itemLabel="#{_s.description}" itemValue="#{_s.value}" />
<f:ajax render="@all" />
</h:selectOneMenu>
Is there any simple possibility that I can keep the param.id in the AJAX request. Currently it is lost.
Make it a view param instead.
with
and