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


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | lfShow(field) | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Shows the given field.

Shows the given field.

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| field | String | Yes | Specifies the field to show |

## Return Type

**None**

## Example

The following example demonstrates how to show the issue type field on the issue if the assignee is admin.

```javascript
if(assignee == "admin") {
   lfShow("issueType");
}
```

In addition to the Fields and graphic elements supported by Live Fields accepted by all Live Fields functions, lfShow 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)