Hi Team,
I am unable to hide or disable the fields under the planning section on both the change details page and the new change page.
Here’s the code I am using:
client.interface.trigger("disable", {id: "elementA"});
client.interface.trigger ("hide", {id: "elementB"})
Thank you in advance for your assistance.
@Raviraj , @Saif , @jones For your inputs
Raviraj
(Raviraj Subramanian)
3
Hi @Akhil_Moningii,
Have you tried using this syntax with the hideElement
key? Looks like the documentation points to this syntax for the change pages.
client.interface.trigger("disableElement", {id: "elementA"});
client.interface.trigger ("hideElement", {id: "elementB"})