Could you give me an example of the way I should code into the pfc_Validation
event? This is an event that I have never used. For example here is something I have coded in the ue_itemchanged
event.
if dwo.name = 'theme' then
This.Setitem(row,"theme",wf_clean_up_text(data))
end if
if dwo.name = 'Comments' then
This.Setitem(row,"Comments",wf_clean_up_text(data))
end if
Which is the proper way of coding those validations in the pfc_Validation
event , so that they are performed only on save-time?