- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-05-2019 01:41 AM
Hi Team,
I would like to change the label name of "Variable Editor" formatter from "Variables" to custom specific.
Can someone help on this? How to change the label name?
Sujatha V.M.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-05-2019 02:24 AM
Hi
If everything else fails
Create an onLoad Client script with:
var x = document.getElementsByClassName("veditor_header");
x[0].innerHTML = "Very important Variables or another fancy name";
For newer instances REMEBER to clear the checkbox "Isolate script" in the client script.
Is this best practice ? Probably not
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-05-2019 02:24 AM
Hi
If everything else fails
Create an onLoad Client script with:
var x = document.getElementsByClassName("veditor_header");
x[0].innerHTML = "Very important Variables or another fancy name";
For newer instances REMEBER to clear the checkbox "Isolate script" in the client script.
Is this best practice ? Probably not