diff --git a/content/en/docs/2025.11/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/bottom-panel/executions-grid.md b/content/en/docs/2025.11/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/bottom-panel/executions-grid.md index abae1cbd2..b43915ef4 100644 --- a/content/en/docs/2025.11/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/bottom-panel/executions-grid.md +++ b/content/en/docs/2025.11/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/bottom-panel/executions-grid.md @@ -25,6 +25,8 @@ Flows that are `Running` or `Paused` are shown with a green background; flows th An [execution][What is an Execution?] may be selected by clicking on its row and can be controlled by action icons at the top right of the Executions Grid. Multiple executions can be selected using `Ctrl + Click` or `Shift + Click`. Selected executions are indicated with a darker background and the actions available are dependent on the state of the selected executions; greyed-out action icons are not applicable to the selected executions’ state. +See the [Selecting an Execution][Selecting an Execution tutorial] tutorial for a step-by-step guide. + ### Continue the Execution Clicking the {{< image src="/images/Flow Editor - Continue Execution.png" >}} icon causes the selected executions to continue until the flow ends, a breakpoint is reached, or [`Break on exception`][Execution Options] is enabled and an exception has occurred causing the flow to pause. This action is only available for paused executions. @@ -98,6 +100,7 @@ None * [Show Initial Flow First or Last][Show Initial Flow First or Last tutorial] [Continue and Stop the Execution tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.ContinueStopExecution" >}} +[Selecting an Execution tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.SelectExecution" >}} [Show Initial Flow First or Last tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.ShowFirstLast" >}} [Step the Execution tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.StepExecution" >}} [Stop Tracking and Go To tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.StopTrackingGoTo" >}} diff --git a/content/en/docs/2025.11/Tutorials/Development/flow-editor/bottom-panel.md b/content/en/docs/2025.11/Tutorials/Development/flow-editor/bottom-panel.md index cf9e9a094..307edd2de 100644 --- a/content/en/docs/2025.11/Tutorials/Development/flow-editor/bottom-panel.md +++ b/content/en/docs/2025.11/Tutorials/Development/flow-editor/bottom-panel.md @@ -9,6 +9,10 @@ weight: 50 ## Executions Grid +### Select an Execution + +{{< scribe title="Selecting_Executions_Displayed_in_the_Executions_Grid" id="aupnEzLhQ7yZcQaNScvLeg" >}} + ### Continue and Stop the Execution {{< scribe title="Continue_the_Execution_and_Stop_the_Execution" id="Y1VaqZLTQlaLm6bS5c_jGQ" >}} diff --git a/content/en/docs/2025.9/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/bottom-panel/executions-grid.md b/content/en/docs/2025.9/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/bottom-panel/executions-grid.md index abae1cbd2..b43915ef4 100644 --- a/content/en/docs/2025.9/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/bottom-panel/executions-grid.md +++ b/content/en/docs/2025.9/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/bottom-panel/executions-grid.md @@ -25,6 +25,8 @@ Flows that are `Running` or `Paused` are shown with a green background; flows th An [execution][What is an Execution?] may be selected by clicking on its row and can be controlled by action icons at the top right of the Executions Grid. Multiple executions can be selected using `Ctrl + Click` or `Shift + Click`. Selected executions are indicated with a darker background and the actions available are dependent on the state of the selected executions; greyed-out action icons are not applicable to the selected executions’ state. +See the [Selecting an Execution][Selecting an Execution tutorial] tutorial for a step-by-step guide. + ### Continue the Execution Clicking the {{< image src="/images/Flow Editor - Continue Execution.png" >}} icon causes the selected executions to continue until the flow ends, a breakpoint is reached, or [`Break on exception`][Execution Options] is enabled and an exception has occurred causing the flow to pause. This action is only available for paused executions. @@ -98,6 +100,7 @@ None * [Show Initial Flow First or Last][Show Initial Flow First or Last tutorial] [Continue and Stop the Execution tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.ContinueStopExecution" >}} +[Selecting an Execution tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.SelectExecution" >}} [Show Initial Flow First or Last tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.ShowFirstLast" >}} [Step the Execution tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.StepExecution" >}} [Stop Tracking and Go To tutorial]: {{< url path="Cortex.Tutorials.Development.FlowEditor.BottomPanel.StopTrackingGoTo" >}} diff --git a/content/en/docs/2025.9/Tutorials/Development/flow-editor/bottom-panel.md b/content/en/docs/2025.9/Tutorials/Development/flow-editor/bottom-panel.md index cf9e9a094..307edd2de 100644 --- a/content/en/docs/2025.9/Tutorials/Development/flow-editor/bottom-panel.md +++ b/content/en/docs/2025.9/Tutorials/Development/flow-editor/bottom-panel.md @@ -9,6 +9,10 @@ weight: 50 ## Executions Grid +### Select an Execution + +{{< scribe title="Selecting_Executions_Displayed_in_the_Executions_Grid" id="aupnEzLhQ7yZcQaNScvLeg" >}} + ### Continue and Stop the Execution {{< scribe title="Continue_the_Execution_and_Stop_the_Execution" id="Y1VaqZLTQlaLm6bS5c_jGQ" >}} diff --git a/data/urls.toml b/data/urls.toml index 3d8c2c898..e3260d620 100644 --- a/data/urls.toml +++ b/data/urls.toml @@ -3175,6 +3175,7 @@ DefineInputOutputVariable = "/docs/tutorials/development/flow-editor/bottom-panel/#define-an-input-or-output-variable" MessagesGrid = "/docs/tutorials/development/flow-editor/bottom-panel/#messages-grid" ModifyVariableScope = "/docs/tutorials/development/flow-editor/bottom-panel/#modify-the-scope-of-a-variable" + SelectExecution = "/docs/tutorials/development/flow-editor/bottom-panel/#select-an-execution" ShowFirstLast = "/docs/tutorials/development/flow-editor/bottom-panel/#show-initial-flow-first-or-last" StartTracking = "/docs/tutorials/development/flow-editor/bottom-panel/#start-tracking" StepExecution = "/docs/tutorials/development/flow-editor/bottom-panel/#step-the-execution"