Autopopulate value using On CellEdit Script.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2024 04:32 AM
Hello Community,
Need Help with Client Script!
We wanted to auto-populate value from one table to another in the list view
For which wrote a cell edit client script and script include
We getting value in the alert box but it's not populating on the field
Here, am attaching a Screenshot of the script.
Client Script-
Script Include-
Please let me know what needs to be edited or changed.
Thank you and Regards,
Pravershi.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2024 09:49 AM
Hi @Pravershi ,
Try using XMLWait instead in your client script.
Something like (lines 10-21):
ga.getXMLWait();
var response = ga.getAnswer();
alert('Rate is: ' + response);
g_form.setValue('u_rate', response);
callback(saveAndClose);
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2024 12:22 AM
hi @Jon23 ,
Yes, I tried this option but unfortunately no favorable outcomes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2024 06:59 AM