1 <ng-container *ngIf="expandedRow">
6 cdStatefulTab="sync-policy-details">
7 <ng-container ngbNavItem="flow">
11 <ng-template ngbNavContent>
15 It can define symmetrical data flow, in which multiple zones sync data from each other.
21 [data]="symmetricalFlowData"
22 [columns]="symmetricalFlowCols"
24 selectionType="multiClick"
25 [searchableObjects]="true"
31 (updateSelection)="updateSelection($event, flowType.symmetrical)"
32 (fetchData)="loadFlowData($event)">
33 <div class="table-actions btn-toolbar">
35 [permission]="permission"
36 [selection]="symFlowSelection"
38 [tableActions]="symFlowTableActions" >
45 It can define directional data flow, in which the data moves in one way, from one zone to another.
51 [data]="directionalFlowData"
52 [columns]="directionalFlowCols"
54 selectionType="multiClick"
55 [searchableObjects]="true"
61 (updateSelection)="updateSelection($event, flowType.directional)"
62 (fetchData)="loadFlowData($event)">
63 <div class="table-actions btn-toolbar">
65 [permission]="permission"
66 [selection]="dirFlowSelection"
68 [tableActions]="dirFlowTableActions">
74 *ngIf="dirFlowSelection.hasSelection">
75 'Edit' and 'Delete' functionalities for Directional flow are disabled for now due to some internal dependency. They will be enabled once the issue is resolved.
81 <div [ngbNavOutlet]="nav"></div>
84 <ng-template #deleteTpl>
85 <cd-alert-panel type="danger"
87 Are you sure you want to delete these Flow?