Removing Toolbar Labels with JavaScriptJavaScript can be used to remove a Toolbar Label at any time in a Workflow.
How ToInside any JavaScript-manipulating Field (Calculate, JavaScript, JavaScript - Button), use the Script.Labels.Remove() function:
Script.Labels.Remove(name);
Example:
Script.Labels.Remove("customerName");
|