I have a controller named clController
. This controller has code
property and I want to send this code
property a value.
<h:form>
<h:inputHidden value="#{item.code}" />
<h:commandLink action="#{clController.getByCode()}" value="#{item.code}" />
</h:form>
above code is in a datatable. How can i send item.code value to this property?