Data lookup is not working onchange but working on submit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-14-2016 11:41 PM
Hi All,
I am using data lookup definition to set the values of one field based on the other field. in eureka, it worked well. but, after upgraded to geneva the data population is working only when the record was submitted and it is not populating onchange of the field.
I have checked that "Run on form change" was set to true.
Please provide your inputs to get this worked.
thanks and regards,
Swamy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-15-2016 07:55 AM
Couple of things you want to check:
1. If you manually activated the plug-in, cross check if there is no custom business logic inteferring with look up rules.
2. Verify following troubleshooting steps from wiki:
If the custom data lookup definition rules are not behaving as expected, check for the following conditions.
- Verify that the data lookup definition is set to run on the appropriate events.
- Verify that the matcher field is not read-only. Since users cannot change read-only fields, user interactions cannot trigger an on form change event for read-only fields.
- Verify a client script is not changing a field value. Client scripts can trigger Run on form change events even on read-only fields.
- Verify that the data in the matcher table is correct.
- If the lookup requires an exact match, verify that there is a matcher table row for each possible combination (including blank values). The lookup fails if cannot find a matching value.
- Verify that you have not created a recursive rule, such as:
- If Field A = 1, then Field B =2. If Field B = 2, then Field A = 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2025 03:34 PM
Very helpful, Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-22-2022 12:59 PM
try running this code in global scope in the background script -
gs.invalidateCache();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-30-2022 12:35 PM
Awesome!