- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2024 12:38 PM
Two questions.
If I have a Yes / No and Yes is selected within the Catalog item can it auto populate a free text line?
Select yes --> Free text is populated to enter info.
Second questions.
Yes/ No If Yes is selected can a multiple choice populate?
ty for any feedback.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2024 10:42 PM
Hi @Tfnhodgi ,
You can achieve .You can use either on change catalog client script or catalog UI policy.
Just one question same Yes/No variable you want to perform 2 actions for "Yes" selection.
1. If I have a Yes / No and Yes is selected within the Catalog item can it auto populate a free text line?
Select yes --> Free text is populated to enter info.
}
2. Yes/ No If Yes is selected can a multiple choice populate?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2024 09:50 PM - edited 02-22-2024 11:24 PM
Hi @Tfnhodgi ,
Try to create an onchange catalog client script on Yes/No variable and use below script
if(newValue=='Yes'){
g_form.setValue('textvariablename','Text to be autopulated');
}else if(newValue =='No'){
g_form.setValue('multiplechoicevariablename','choicevalue');
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2024 10:42 PM
Hi @Tfnhodgi ,
You can achieve .You can use either on change catalog client script or catalog UI policy.
Just one question same Yes/No variable you want to perform 2 actions for "Yes" selection.
1. If I have a Yes / No and Yes is selected within the Catalog item can it auto populate a free text line?
Select yes --> Free text is populated to enter info.
}
2. Yes/ No If Yes is selected can a multiple choice populate?