Skip to content

Commit 703397d

Browse files
author
Donna-Marie Smith
committed
Added Executions Grid
1 parent d16824d commit 703397d

19 files changed

Lines changed: 171 additions & 9 deletions
Lines changed: 106 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,111 @@
11
---
22
title: "Executions Grid"
33
linkTitle: "Executions Grid"
4-
description: "TODO"
4+
description: "View the executions that are being debugged"
55
weight: 20
66
---
7+
8+
# {{% param title %}}
9+
10+
## Summary
11+
12+
The Executions Grid displays information about all the [flows][What is a Flow?] that are currently [executing][What is an Execution?], paused, or errored in the Flow Editor.
13+
14+
## Anatomy
15+
16+
{{< figure src="/images/Flow Editor - Executions Grid.png" title="Executions Grid" >}}
17+
18+
The Executions Grid is automatically displayed when in Debug Mode and a flow is executing or paused from executing; however, it may be manually opened, or closed any time by clicking the Open/Close handle or resized by dragging the handle left or right..
19+
20+
Flows that are Running or Paused are shown with a green background; flows that have raised an [exception][What is an Exception?] are shown with a red background.
21+
22+
An execution may be selected by clicking on its entry in the Executions Grid and can be controlled by a set of icons on the top right of the Executions Grid. Selected executions are indicated with a darker background and the actions available are dependent on the state of the selected execution; greyed-out action icons not applicable to the selected executions’ state.
23+
24+
## Actions
25+
26+
### Continue the Execution
27+
28+
Clicking the {{< image src="/images/Flow Editor - Continue Execution.png" >}} icon causes the selected execution to continue until the flow ends, a breakpoint is reached, or an exception has occurred causing the flow to pause. This action is only available for paused executions.
29+
30+
See the [Continue and Stop the Execution][Continue and Stop the Execution tutorial] tutorial for a step-by-step guide.
31+
32+
### Pause the Execution
33+
34+
Clicking the {{< image src="/images/Flow Editor - Pause Execution.png" >}} icon pauses the selected execution. This action is only available for running executions.
35+
36+
### Step the Execution
37+
38+
Clicking the {{< image src="/images/Flow Editor - Step Execution.png" >}} icon causes the selected execution to execute the next [block][What is a Block?] and pause again. This action is only available for paused executions.
39+
40+
See the [Step the Execution][Step the Execution tutorial] tutorial for a step-by-step guide.
41+
42+
### Stop the Execution
43+
44+
Clicking the {{< image src="/images/Flow Editor - Stop Execution.png" >}} icon terminates the execution of the selected execution, and after a few seconds, removes them from Executions Grid. This action is available for all executions, regardless of their state.
45+
46+
See the [Continue and Stop the Execution][Continue and Stop the Execution tutorial] tutorial for a step-by-step guide.
47+
48+
### Go To
49+
50+
Clicking the {{< image src="/images/Flow Editor - Go To.png" >}} icon causes the Flow Editor to open the [workspace][What is a Workspace?] which the selected execution is executing and focus on the location of the execution. It is typically used to locate the selected execution when the execution is not automatically tracked. This action is available for all executions, regardless of their state.
51+
52+
See the [Stop Tracking and Go To][Stop Tracking and Go To tutorial] tutorial for a step-by-step guide.
53+
54+
### Start tracking
55+
56+
Clicking the {{< image src="/images/Flow Editor - Start Tracking.png" >}} icon causes the Flow Editor to follow the flow execution, opening any necessary workspaces. The execution is not dynamically tracked if the Show execution on workspace Execution option is not selected, or a second execution is started concurrently in the Flow Editor. This action is available for any execution not being tracked.
57+
58+
See the [Start Tracking][Start Tracking tutorial] tutorial for a step-by-step guide.
59+
60+
### Stop tracking
61+
62+
Clicking the {{< image src="/images/Flow Editor - Stop Tracking.png" >}} icon causes the tracking of the execution to stop, and the Flow Editor will not maintain focus on the execution. This action is available for any execution being tracked.
63+
64+
See the [Stop Tracking and Go To][Stop Tracking and Go To tutorial] tutorial for a step-by-step guide.
65+
66+
### Show Initial Flow First / Show Initial Flow Last
67+
68+
Clicking the {{< image src="/images/Flow Editor - Show First.png" >}} (Show Initial Flow First) or {{< image src="/images/Flow Editor - Show Last.png" >}} (Show Initial Flow Last) icon changes the order of the hierarchy of parent and child flow executions, placing the parent execution uppermost and its children below, or the child execution uppermost and it's parent below. When {{< image src="/images/Flow Editor - Show First.png" >}} is clicked the icon changes to {{< image src="/images/Flow Editor - Show Last.png" >}} and vice versa. This action applies to all executions in the Executions Grid.
69+
70+
See the [Show Initial Flow First or Last][Show Initial Flow First or Last tutorial] tutorial for a step-by-step guide.
71+
72+
## Remarks
73+
74+
### Known Limitations
75+
76+
None
77+
78+
## See Also
79+
80+
### Related Concepts
81+
82+
* [Blocks][]
83+
* [Exceptions][]
84+
* [Executions][]
85+
* [Flows][]
86+
* [Workspaces][]
87+
88+
### Related Tutorials
89+
90+
* [Continue and Stop the Execution][Continue and Stop the Execution tutorial]
91+
* [Step the Execution][Step the Execution tutorial]
92+
* [Stop Tracking and Go To][Stop Tracking and Go To tutorial]
93+
* [Start Tracking][Start Tracking tutorial]
94+
* [Show Initial Flow First or Last][Show Initial Flow First or Last tutorial]
95+
96+
[Continue and Stop the Execution tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.ContinueStopExecution" >}}
97+
[Show Initial Flow First or Last tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.ShowFirstLast" >}}
98+
[Step the Execution tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.StepExecution" >}}
99+
[Stop Tracking and Go To tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.StopTrackingGoTo" >}}
100+
[Start Tracking tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.StartTracking" >}}
101+
102+
[Blocks]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.MainDoc" >}}
103+
[Exceptions]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Exceptions.MainDoc" >}}
104+
[Executions]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Executions.MainDoc" >}}
105+
[Flows]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Flows.MainDoc" >}}
106+
[What is a Block?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.WhatIsABlock.MainDoc" >}}
107+
[What is a Flow?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Flows.WhatIsAFlow.MainDoc" >}}
108+
[What is a Workspace?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Workspaces.WhatIsAWorkspace.MainDoc" >}}
109+
[What is an Exception?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Exceptions.WhatIsAnException.MainDoc" >}}
110+
[What is an Execution?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Executions.WhatIsAnExecution.MainDoc" >}}
111+
[Workspaces]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Workspaces.MainDoc" >}}
Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,49 @@
11
---
22
title: "Overview"
33
linkTitle: "Overview"
4-
description: "TODO"
4+
description: "Summary and Anatomy of the Bottom Panel"
55
weight: 10
66
---
7+
8+
# {{% param title %}}
9+
10+
## Summary
11+
12+
The Bottom Panel allows the management of [variables][What is a Variable?], displays the current [executions][What is an Execution?] being debugged and any [issues][What is a Message?] preventing the [flow][What is a Flow?] from being debugged.
13+
14+
## Anatomy
15+
16+
{{< figure src="/images/Flow Editor - Bottom Panel.png" title="Bottom Panel" >}}
17+
18+
The 3 tabs that form the Bottom Panel are:
19+
20+
* Executions (default) - displays the [Executions Grid][] listing current [executions][What is an Execution?] being debugged by the user.
21+
* Messages - displays the [Messages Grid][] listing [issues][What is a Message?] preventing the flow from being debugged.
22+
* Variables - displays the [Variables Grid][] enabling the management of [variables][What is a Variable?].
23+
24+
## See Also
25+
26+
### Related Concepts
27+
28+
* [Executions][]
29+
* [Flows][]
30+
* [Messages][]
31+
* [Variables][]
32+
33+
### Related Tutorials
34+
35+
* [Bottom Panel][Bottom Panel tutorial]
36+
37+
[Bottom Panel tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.MainDoc" >}}
38+
39+
[Executions]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Executions.MainDoc" >}}
40+
[Executions Grid]: {{< url path="Cortex.Guides.UserGuides.UserInterfaces.Gateway.Dev.FlowEditor.BottomPanel.ExecutionsGrid" >}}
41+
[Flows]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Flows.MainDoc" >}}
42+
[Messages]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Messages.MainDoc" >}}
43+
[Messages Grid]: {{< url path="Cortex.Guides.UserGuides.UserInterfaces.Gateway.Dev.FlowEditor.BottomPanel.MessagesGrid" >}}
44+
[Variables]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.MainDoc" >}}
45+
[Variables Grid]: {{< url path="Cortex.Guides.UserGuides.UserInterfaces.Gateway.Dev.FlowEditor.BottomPanel.VariablesGrid" >}}
46+
[What is a Flow?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Flows.WhatIsAFlow.MainDoc" >}}
47+
[What is a Variable?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.WhatIsAVariable.MainDoc" >}}
48+
[What is a Message?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Messages.WhatIsAMessage.MainDoc" >}}
49+
[What is an Execution?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Executions.WhatIsAnExecution.MainDoc" >}}

content/en/docs/2025.3/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/main-panel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ See the [Edit Flow and Continue Debugging][Edit Flow and Continue Debugging tuto
9696

9797
Available in Editor Modes: `Debug Edit`
9898

99-
The {{< image src="/images/Flow Editor - Start Execution.png" >}} icon saves any changes made to the flow to the developer’s local repository and changes the editor mode to `Debug`.
99+
The {{< image src="/images/Flow Editor - Continue Debugging.png" >}} icon saves any changes made to the flow to the developer’s local repository and changes the editor mode to `Debug`.
100100

101101
See the [Edit Flow and Continue Debugging][Edit Flow and Continue Debugging tutorial] tutorial for a step-by-step guide.
102102

content/en/docs/2025.3/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/right-panel/settings-editor.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,14 @@ When the `Is Input Variable?` property is changed for a variable in the [Variabl
2727

2828
To make a variable an Input Variable, open the Variables Grid (Bottom Panel) by selecting on the Variables tab. Double-click on the Is Input Variable? field of the variable that is to be made an Input Variable, and tick the checkbox that appears in the field.
2929

30+
See the [Settings Editor][Settings Editor tutorial] tutorial for a step-by-step guide.
31+
3032
### Update Input Variables in Settings Editor
3133

3234
When a new Input Variable is defined, or an existing Input Variable removed, it is necessary to update the Input Variables in the Settings Editor. To do this, click on the Update Inputs button on the Settings Editor.
3335

36+
See the [Settings Editor][Settings Editor tutorial] tutorial for a step-by-step guide.
37+
3438
## Remarks
3539

3640
### Known Limitations
@@ -46,15 +50,17 @@ When a new Input Variable is defined, or an existing Input Variable removed, it
4650

4751
### Related Tutorials
4852

49-
* [Execution Viewer][Execution Viewer tutorial]
53+
* [Settings Editor][Settings Editor tutorial]
5054

5155
[Variables Viewer]: {{< ref "#variables-viewer" >}}
5256
[Variables Details Viewer]: {{< ref "#variables-details-viewer" >}}
5357

54-
[Right Panel]: {{< url path="Cortex.Guides.UserGuides.UserInterfaces.Gateway.Dev.FlowEditor.RightPanel.MainDoc" >}}
58+
[Flow Input Variable]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.WhatIsAVariable.FlowInputVariable" >}}
5559
[Flows]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Flows.MainDoc" >}}
56-
[Execution Viewer tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.RightPanel.ExecutionViewer" >}}
60+
[Right Panel]: {{< url path="Cortex.Guides.UserGuides.UserInterfaces.Gateway.Dev.FlowEditor.RightPanel.MainDoc" >}}
61+
[Settings Editor tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.RightPanel.SettingsEditor" >}}
5762
[Variable Scopes]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.VariableScopes.MainDoc" >}}
5863
[Variables]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.MainDoc" >}}
64+
[Variables Grid]: {{< url path="Cortex.Guides.UserGuides.UserInterfaces.Gateway.Dev.FlowEditor.BottomPanel.VariablesGrid" >}}
5965
[What is a Flow?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Flows.WhatIsAFlow.MainDoc" >}}
6066
[What is a Variable?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.WhatIsAVariable.MainDoc" >}}

content/en/docs/2025.3/Tutorials/Development/flow-editor/bottom-panel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ weight: 50
99

1010
## Executions Grid
1111

12-
### Continue and Stop an Execution
12+
### Continue and Stop the Execution
1313

1414
{{< scribe title="Continue_the_Execution_and_Stop_the_Execution" id="Y1VaqZLTQlaLm6bS5c_jGQ" >}}
1515

16-
### Step an Execution
16+
### Step the Execution
1717

1818
{{< scribe title="Step_the_Execution" id="FYz8savqQr-w8ZGWqxnhnQ" >}}
1919

48.1 KB
Loading
496 Bytes
Loading
1.99 KB
Loading
488 Bytes
Loading
242 KB
Loading

0 commit comments

Comments
 (0)