This content has been marked as final.
Show 1 reply
-
1. Re: edit duplicated fields
George_Johnson Nov 6, 2012 11:49 AM (in response to UliW)You can use the following custom Validate script in the CustomerName field:
// Custom Validate script
if (event.value) {
getField("ProjectName").value = event.value;
getField("AccountName").value = event.value;
getField("BillingName").value = event.value;
getField("ReferenceName").value = event.value;
}
This will overwrite those field values whenever the user updates the CustomerName field, unless it is blanked. You could add additional code so that if any of the fields is not blank, it won't overwrite the value.


