Forum Discussion
Ahmed_Amin
Apr 14, 2020Copper Contributor
ProjectServer PDP - Set Field Value Based on Lookup field selection
Hi, I am trying to add JavaScript code inside Project Server PDP, that sets custom field value based on lookup table value selection. I tried many JavaScript Events (onchange, onselect, etc..) all ...
- Sep 11, 2021Finally i found how to do so, by attaching an event to the custom field as follows:
FieldID.on('Event', function(e){
e.target}, true);
// true force event to run on child elements.
// target --> gets the child that fired the event.
Ahmed_Amin
Sep 11, 2021Copper Contributor
Finally i found how to do so, by attaching an event to the custom field as follows:
FieldID.on('Event', function(e){
e.target}, true);
// true force event to run on child elements.
// target --> gets the child that fired the event.
FieldID.on('Event', function(e){
e.target}, true);
// true force event to run on child elements.
// target --> gets the child that fired the event.