- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-18-2018 12:35 AM
How to auto populate the description and short description field in Task from RITM when new button is clicked? Also short description and description has to auto populate at the time of Task loading.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-19-2018 05:42 AM
You're welcome! You can mark my answer correct so that it changes your question to solved, if it helped.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-18-2018 12:10 PM
I'd add an onload client script to your catalog task table:
if (g_form.getValue('description') == '' and g_form.getValue('short_description') == ''){
var req = g_form.getReference('request_item');
g_form.setValue('description',req.description);
g_form.setValue('short_description',req.short_description);
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-18-2018 10:37 PM
Thank You Kristen, It worked for me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-19-2018 05:42 AM
You're welcome! You can mark my answer correct so that it changes your question to solved, if it helped.