On the Quote & Order entities - I have a JavaScript function that is firstly displaying a section with a Quick View and then trying to use the setLabel method to set the label of the Quick Form.
When I use the getLabel method I can see that the label is being set but it's not displaying on the UI.
Here is a snippet of the code in question:
if (contractClassification === trainingContractClass) {
formContext.ui.tabs.get("Subscriptions").sections.get("TrainSec").setVisible(true);
formContext.ui.quickForms.get("InTrain").setLabel("VIS Training Locations");
}
Has anyone else experienced this? Or can re-create it / give some guidance?