Skip to end of banner
Go to start of banner

lfHideAllExcept (Power Scripts)

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Description

Hides all given fields, panels, and tabs except the ones given as parameters.

Parameters

Return Type

None

Example

lfHideAllExcept("details_panel", "issueType", "priority", "activity_panel", "comments_tab",  "Field Tab", "customfield_10101");

This is equivalent to:

lfShow("details_panel");
lfShow("issueType");
lfShow("activity_panel");
lfShow("comments_tab");
lfShowTab("Field Tab");
lfShow("customfield_10101");
//for all the other fields, tabs and panels: lfHide(element);

In addition to the Fields and graphic elements supported by Live Fields accepted by all Live Fields routines, lfHideAllExcept can also handle:

ElementField (to be used in routine)
Details Paneldetails_panel
People Panelpeople_panel
Dates Paneldates_panel
Timetracking Paneltimetracking_panel
Activity Panelactivity_panel
Comments Tabcomments_tab
History Tabhistory_tab
Worklog Tabworklog_tab
All Taball_tab
Add CommentaddComment

See also

  • No labels