Sorry, by 'All Looks good' I meant that the field in question does have the correct data in it. It just does not refresh the form.
I suppose what I am asking is how do I force the refresh for the field on the form.
When I look at the code I see
do ValidateValue::btn_crcusdir ! copies value to session value if valid.
! Start of "After Validate New Value"
! [Priority 4000]
! Set the File Locations if fields are empty
IF CLIP(cus:UploadLocation) = ''
Loc:uploadLocation = p_web.GSV('DataPath') &'\' &p_web.GetValue('cus:CustomerCode') &'\Uploads'
p_web.Trace('XXX: ' &Loc:uploadLocation)
cus:UploadLocation = CLIP(Loc:uploadLocation)
p_web.Trace('XXX: ' &cus:UploadLocation)
END
! End of "After Validate New Value"
p_web.PushEvent('parentupdated')
do Refresh::btn_crcusdir ! Button "Send new value to server"
do Refresh::cus:UploadLocation !(GenerateFieldReset)
do Refresh::cus:TemplateLocation !(GenerateFieldReset)
do Refresh::cus:CoverLoc !(GenerateFieldReset)
p_web.ntForm(loc:formname,'ready') ! 8.67 (in case the form was not the originator of the Ajax call)
! Start of "After Validate New Value, After sending replies"
! [Priority 5000]
The fields do not refresh
Thanks.