- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-28-2015 05:44 AM
I want to change the label of the variable based on some conditions. The type of the Variable is :Label
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-28-2015 11:32 AM
Hi, try using something like the following code in a catalog client script. Please note that you will need to add in there the sysid of you variable.
variableSysID = '4183304f4f9b0200fbb73fb28110c75a';
gel('label_IO:' + variableSysID).childNodes[0].childNodes[1].innerHTML = 'My new Label Text Here';
Thanks,
Berny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-28-2015 11:32 AM
Hi, try using something like the following code in a catalog client script. Please note that you will need to add in there the sysid of you variable.
variableSysID = '4183304f4f9b0200fbb73fb28110c75a';
gel('label_IO:' + variableSysID).childNodes[0].childNodes[1].innerHTML = 'My new Label Text Here';
Thanks,
Berny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-29-2015 12:28 AM
Hi Berny,
It worked.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-28-2020 08:56 AM