Inserting Links Into Help Text
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-13-2010 10:02 PM
Can someone provide the solution to having help text on a catalog variable to contain an external link?
Thanks for your help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-23-2016 01:16 AM
Hey Raymond,
We upgraded to FUJI Patch 11 and the issue reoccured in our instance. Any updates?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-23-2016 07:06 AM
fuji 11 hotfix 1 should fix it so the property works correctly.. however it is recommended we do not do that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-09-2016 04:13 PM
Hi Matthew,
There is a system property glide.ui.escape_text which is set to true, which is causing you to see the html tag and not the actual text. You can see that by setting the property to false. But be aware that you are changing that setting globally.
Thanks,
Praveen.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-15-2017 10:58 PM
Hi All,
i have also encountered similar issue in which the property - glide.ui.escape_text was true and we do not want to change the value of that property because of other requirements. We can achieve this functionality in an alternate way.
Write a on Load client script as below:
function onLoad() {
//Type appropriate comment here, and begin script below
$$("div.sc-help-text").each(function(item){
var textValue = item.innerText;
$(item).update(textValue);
});
}
After writing this script, your html code will work in hep text of a variable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-10-2022 08:53 AM
Hello All,
Could you please let me know, what changes you did in this script so it is working.
As I have used the below script as it is but it not worked for me.. Kindly let me know what needs to change in the script as per my variables / configuration.
on load client script which I have used :
function onLoad() {
//Type appropriate comment here, and begin script below
$$("div.sc-help-text").each(function(item) {
var textValue = item.innerText;
$(item).update(textValue);
});
}