- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2022 12:45 AM
Requirement is that on the based of category whenever the user selects A,B info message should display like this" Please click here to review a Knowledge article that may assist resolving your issue. (K1)". and also user must be able to access hyperlink that is click.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2022 01:01 AM
hello,
Write a on change catalog client script on the catalog item for the field category:
Script:-
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
var cat=g_form.getValue('categoryvaribalename');
if(cat=='valueofAchoice'||cat=='valueofBchoice')
{
g_form.addInfoMessage("Please <a href = 'Addyourlinkhere'>Click here</a> to review a Knowledge article that may assist resolving your issue. (K1)");
}
}
Please mark answer correct/helpful based on Impact
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2022 01:01 AM
hello,
Write a on change catalog client script on the catalog item for the field category:
Script:-
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
var cat=g_form.getValue('categoryvaribalename');
if(cat=='valueofAchoice'||cat=='valueofBchoice')
{
g_form.addInfoMessage("Please <a href = 'Addyourlinkhere'>Click here</a> to review a Knowledge article that may assist resolving your issue. (K1)");
}
}
Please mark answer correct/helpful based on Impact
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2022 01:23 AM
Hello,
If my answer helped you please mark it as correct as well.
Thanks..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2022 01:32 AM
target="_blank" doesnot work in catalog item
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2022 01:37 AM
Thankyou so much!!