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


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

## Description

> Macro (excerpt)
> 
> Shows the given fields, panels and tabs.

Shows the given fields, panels and tabs.

## Parameters

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

## Return Type

**None**

## Example

```javascript
lfShowAll("issueType", "comments_tab", "activity_panel", "Field Tab");
```

This is equivalent to: 

```javascript
lfShow("issueType");
lfShow("comments_tab");
lfShow("activity_panel");
lfShowTab("Field Tab");
```

## See also

> Macro (contentbylabel)