I have a list of Field Configurations with different names. For each one I want to hide specified CF. Is it possible to do it with Groovy? Thanks for answers
Hi @lpopek ,
you can do that using the following code :
def field = getFieldById("customfield_YOURIDHERE");
field.setHidden(true);
Hope this helps,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.