Availability
This routine is available starting with
- Power Scripts 2.5
- katl-commons 2.5
Syntax
lfHide(field)
Description
Hides the given field.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
field | String | Yes | Specifies the field to hide. |
Example
If the assignee is not admin, hide the issue type field from the issue.
if(assignee != "admin") { lfHide("issueType"); }
The image shows on the left side that the issue type is hidden and on the right side that the assignee is set to "test 1".
Now that the field is hidden, you can use lfShow to display it on the issue screen.
Hiding fields and security
Note that hiding fields on the screen is not secure. This is not a security solution, the field is still present in HTML and can still be inspected via a simple "Show page source".
Use this feature only to put a certain logic on the screen.
Additional Fields
In addition to the Fields and graphic elements supported by Live Fields accepted by all Live Fields routines, lfHide can also handle:
Element | Field (to be used in routine) |
---|---|
Details Panel | details_panel |
People Panel | people_panel |
Dates Panel | dates_panel |
Timetracking Panel | timetracking_panel |
Activity Panel | activity_panel |
Comments Tab | comments_tab |
History Tab | history_tab |
Worklog Tab | worklog_tab |
Activity Tab | activity_tab |
All Tab | all_tab |
Add Comment | addComment |
See also
-
Workaround to use live fields in Jira work log screen using Power Scripts (One Appfire Support Knowledge Base)