- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2023 06:47 AM
Hello,
In recordproducer, how can I make sure that in HRCase the display of the question and answer list is shown below each other with a blank line?
I have no experience with scripting.
Thanks,
E. Yalvac
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2023 10:59 AM
Hi @Misafir99 ,
You can write on change catalog client script on last variable selected and use below code and add all variables as per your requirement in below script.
var relocationReason = g_form.getValue('relocation_reason');
var address = g_form.getValue('adress');
var state = g_form.getValue('state');
// add all variables you want to get values
var desc = '<p><strong>Relocation Reason:</strong> ' + relocationReason + '</p>' +
'<p><strong>Address:</strong> ' + address + '</p>' +
'<p><strong>State:</strong> ' + state + '</p>';
// add all variables you want to populate
g_form.setValue('description', desc);
Please mark it as Solution Proposed and Helpful if it works for you.
Thanks,
Anand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2023 10:59 AM
Hi @Misafir99 ,
You can write on change catalog client script on last variable selected and use below code and add all variables as per your requirement in below script.
var relocationReason = g_form.getValue('relocation_reason');
var address = g_form.getValue('adress');
var state = g_form.getValue('state');
// add all variables you want to get values
var desc = '<p><strong>Relocation Reason:</strong> ' + relocationReason + '</p>' +
'<p><strong>Address:</strong> ' + address + '</p>' +
'<p><strong>State:</strong> ' + state + '</p>';
// add all variables you want to populate
g_form.setValue('description', desc);
Please mark it as Solution Proposed and Helpful if it works for you.
Thanks,
Anand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2023 03:42 AM
Thank you very much Anand! It works now:)
Greetings,
Ecevit