I have the following:
<apex:column headerValue="Contact" headerClass="ct" >
<apex:inputField value="{!c.Contactid}" id="inputField"/>
<apex:inputHidden id="hdnField" value="{!contactId}" />
<apex:commandLink value="+" styleClass="btn" style="color:red;font-size:15px;" onclick="setVar();" action="{!updateCase}" >
<apex:param name="caseId"
value="{!c.Id}"
assignTo="{!caseId}" />
<apex:param name="contactId"
value="{!contactId}"
assignTo="{!contactId}" />
</apex:commandLink>
</apex:column>
I'm trying to set the apex:param with the name contactId to the value of my apex:inputHidden field so I can pass that value to my controller when I click the command button. inputHidden is set correctly, but I can't work out how to link the param to the inputHidden value attribute?
Does anybody have any ideas?