lfRefreshScreen

The use of this routine requires the Power Scripts for Jira add-on be installed and licensed.

Description

Performs a page reload.

Parameters

Return Type

None

Example

You can use this routine to refresh information on a view issue screen after performing an auto-transition when issue is viewed for the first time. In this example, the issue is created in the New status. When first accessed, it is auto-transitioned to the Open status and the page is refreshed by means of the lfRefreshScreen routine to reflect the updated info.

if(argv["screen"] == "view" && status == "New") { autotransition("Move to Open", key); lfRefreshScreen(); }

See also