How set a default value using dictionary entry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-22-2020 05:37 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-22-2020 05:46 AM
Hi Sowmya,
If its on Variable level then Yes it is correct. Is it not reflecting correctly?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-22-2020 05:58 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-22-2020 06:23 AM
In that case it is being overriden by some Client script that runs onLoad(). Give it Client Scripts a check once that runs onLoad() for Catalog Task form.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-22-2020 06:38 AM
In begining i have tried clientscript for setting value as "no" for Audited onLoad.
But after saving the, It's showing again "no" for Audited.
Here is my script:
function onLoad() {
//Type appropriate comment here, and begin script below
var grp = g_form.getValue("assignment_group");
if (grp == '14d1f5446f86a100c80e175e5d3ee4c0') {
g_form.setValue('u_audited', 'no');
} else {
g_form.setDisplay('u_audited', false);
g_form.setDisplay('u_score', false);
}
}