lfHide

The use of this routine requires the Power Scripts for Jira add-on be installed and licensed.

Description

Hides the given field.

Parameters

Return Type

None

Example

The following code will hide the issue type field from the issue if the assignee is not an admin.

if(assignee != "admin") { lfHide("issueType"); }

Now that the field is hidden, you can use lfShow to display it on the issue screen.

Hiding fields is not a security solution, the field is present in HTML and can still be inspected via a Show page source option. We recommend that you use this routine only for the cases when you want to add certain logic on the screen only.

See also