---
title: "lfHideAllExcept"
canonical: "https://support.appfire.com/space/PSJ/15480334/lfHideAllExcept"
format: markdown
---
> Macro (aura-html)


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | lfHideAllExcept(fields_tabs_and_panels) | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Hides all given fields, panels, and tabs except the ones given as parameters.

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

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| fields_tabs_and_panels | String | Yes | Specifies the fields, panels, or tabs to hide. |

## Return Type

**None**

## Example

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

This is equivalent to:

```javascript
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 functions, lfHideAllExcept can also handle: 

| Element | Field (to be used in function) |
| --- | --- |
| 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 |
| All Tab | all_tab |
| Add Comment | addComment |

## See also

> Macro (contentbylabel)