Title | Under | Posted on |
---|---|---|
Component interface Error: no rows exist for the specified keys | PeopleSoft Technical | 03/15/2019 - 3:54am |
ADD 24 months starting from current month.(peoplesoft) | PeopleSoft Functional | 07/29/2018 - 8:44pm |
TRC values dropdown | PeopleSoft Technical | 04/04/2018 - 12:54am |
how to find missing sequence in GRID and print the mising sequence number while saving through peoplecode | PeopleSoft Technical | 09/11/2017 - 4:49am |
Make sure the "Allowed Differed Processing" check box is unchecked on both the page field properties and on page properties.
Give back to the community and help it grow!
* Help with unanswered forum questions and issues
* Register or login to share your knowledge at your own blog
"Allowed Differed Processing" check box should be unchecked at page field properties. That should trigger the Field change code once you tab out of the field or press "Enter".
Thanks for your reply.
For instance,in Record.tt.f1.fieldchange I changed the value of Record.tt.f2's value.But the Record.tt.f2.fieldchange event can't trigger.How to trigger the fieldchange event in Record.tt.f2?
If you change the value of a field from PeopleCode, it wouldn't trigger the FieldChange event for the field being changed. You would have to either copy the same piece of code into f1's FieldChange or wrap the code in f2's fieldchange into a function and call the function in f1's field change.
Hi,Ashar.Thanks for your reply.