I'm getting the below error when I click "back button" in browser
Component ID "prodRunsList:prodRunIdss" has already been found in the view. JSF 2.1.
Below is the code causing that exception
where (prodRunsList:prodRunIdss" )prodRunsList.xhtml and prodRunIdss is f:param under "command link"
<h:commandLink value="view" action="select">
<f:param id="prodRunIdss" name="prodRunId" value="#{prodRun.prodRunId}"/>
</h:commandLink>
Notes:
I have "SearchForm.xhtml" page where I can input some values and on search event I'm navigating to "ResultDisplay.xhtml" page to dispaly retrieved records where at end of each record I'm having link to edit that row.by clicking the edit link which is navigating to "update page" here when i click back button in browser I'm getting the above error..
my sample code here
<c:forEach items="#{prodRuns}" var="prodRun">
<p:row>
<p:column>
<h:outputText value="#{prodRun.diameter}" />
</p:column>
<p:column>
<h:outputText value="#{prodRun.partyName}" />
</p:column>
<p:column>
<h:outputText value="#{prodRun.millAndCounts}" />
</p:column>
<p:column>
<h:outputText value="#{prodRun.fabric}" />
</p:column>
<p:column>
<h:outputText value="#{prodRun.nightRun}" />
</p:column>
<p:column>
<h:commandLink value="view" action="select">
<f:param id="prodRunIdsss" name="prodRunId" value="#{prodRun.prodRunId}"/>
</h:commandLink>
</p:column>
</p:row>
</c:forEach>