
Im using javascript to monitor the onChange of a Lookup field and then set some fields with the relevant data eg the rate of an selected product.This works without issue except if I edit the selected items details. In that case the onChange is not fired.
When i click on the selected items hyperlink, it opens the record in an edit form and I can update the fields. Lets say I changed the rate and the product name.
I then save that form and it returns to the calling form, showing the new name in the lookup. However the onChange function doesnt run and the rate remains as the old value.
I have to remove the selected item and then select it again for it to update the rate with the new value.
Is there any event to hook into so that I can update the form fields with their new values? Im extremely new to this and new to javascript...
Here is the hyperlink im talking about, which opens the form to edit that item.
Hello,
On change event will be fire on the same form/ current form. That means if you have on change event on "Form A" which have this lookup field(Existing Item), If you change the value in the lookup then JS will be called else it will not.
In your scenario you are changing the content of "Widget2" but the GUID of this record will remain same. And this GUID is still associated with the "Form A" record.
So in-short system will look into GUID in case of Lookups rather than the field properties of lookup record(Because selected value in the lookup is related record, it's fields are not associated with the main record).
If you want to trigger the Main record when there is any change in the lookup record fields then you need JS where you are fetching the related records and update it. You can also use the Plugin.
Thank you,
Amit Katariya