You need to sign in to do that
Don't have an account?

param and assignTo and actionFunction
I have the following bits of code... it all worked prior to the summer 08 upgrade (well, I changed to the new style of setters/getters). Am I doing something wrong... the ContactInFocus variable in the controller in not getting set.
Code:
in controller: Id contactInFocus{get;set;} In page: <apex:actionFunction action="{!quickLog}" name="apex_quickLog" rerender="pbCallList" status="ajaxStatus" oncomplete="setSelectedContacts();"> <apex:param assignto="{!ContactInFocus}" name="contactInFocus" value=""/> </apex:actionFunction> ... and... <apex:form > <img src="{!URLFOR($Resource.Silk_Icons, 'tick.png')}" alt="Log that you've called this contact" title="Log that you've called this contact" class="inlineIcon {!IF(each.contactedToday,'contactedToday','')}" onclick="apex_quickLog(contactInFocus='{!each.contact.Id}');" /> </apex:form>
The code generated looks okay, e.g.:
onclick="apex_quickLog(contactInFocus='0034000000PZHDGAA5');

I believe that "well, I changed to the new style of setters/getters" is the source of the problem - can you please post the code for the controller?

Okay, I realize I should have eliminated that possibility before posting (and will investigate)... but if you can see anything wrong (particularly if I've got anything wrong with the setter), let me know and save me some time. Thanks ...
Code: