- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2018 10:11 PM
Hi,
I have written an ONLOAD client script and that is working on a field in an form. So now the issue is that I cannot see the field values in the LIST view. How Can I achieve this. Is there any possibility to show those values in LIST view as well.
Thanks for the help!!!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2018 12:43 AM
Hi Maneesh,
After you save the form, the value should be visible in list view as well.
But I will recommend using a Before Insert Business Rule so that the field will get updated at the time of creation of the record and it will be visible both on form as well as list. In that case you don't need a client script. Let me know if you need any help.
Mark correct or helpful if that does the needful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2018 10:35 PM
onLoad client scripts never run on List view. Do you mean the field you want to see is not added in the list view? Or the value in that field only populates with that onLoad client script? If you are populating a value using client script, it doesn't get saved unless you click on Save or Update. List view only shows the values which are saved.
Mark correct or helpful if that helps. Let me know the exact scenario if you face any other issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2018 10:38 PM
Hi Ankit,
I am trying to display an hyperlink in URL field so I have used Onload script to populate it because for this I dont have an triggering condition so I went with Onload. Now Is there any chance to save those all values in backend and populate in LIST view.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2018 12:24 AM
Try Before BR Insert and update
when to run--active is true
current.setValue('fieldname',"https://www.google.com");
it will populate in LIST view as well
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2018 12:43 AM
Hi Maneesh,
After you save the form, the value should be visible in list view as well.
But I will recommend using a Before Insert Business Rule so that the field will get updated at the time of creation of the record and it will be visible both on form as well as list. In that case you don't need a client script. Let me know if you need any help.
Mark correct or helpful if that does the needful.