3 * Copyright (c) 2017 ZTE Corporation.
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * and the Apache License 2.0 which both accompany this distribution,
7 * and are available at http://www.eclipse.org/legal/epl-v10.html
8 * and http://www.apache.org/licenses/LICENSE-2.0
11 * ZTE - initial API and implementation and/or initial documentation
15 <div class="wm-sequence-flow-wrapper" *ngIf="show">
16 <div class="form-group row">
17 <div class="col-md-10"></div>
18 <div class="col-md-2 float-right">
19 <button (click)="delete()" type="button" class="btn btn-danger">
20 <i class="fa fa-trash" style="margin-right: 5px;"></i>
25 <div class="form-group row">
26 <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.CONNECTION_NAME' | translate}}</label>
27 <div class="col-md-9">
28 <input class="form-control" type="text" [(ngModel)]="sequenceFlow.name" (ngModelChange)="nameChanged($event)">
32 <!-- <div class="form-group row">
33 <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.CONNECTION_SOURCE' | translate}}</label>
34 <div class="col-md-9">
35 <input class="form-control" disabled type="text" [(ngModel)]="sequenceFlow.sourceRef">
39 <div class="form-group row">
40 <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.CONNECTION_TARGET' | translate}}</label>
41 <div class="col-md-9">
42 <input class="form-control" disabled type="text" [(ngModel)]="sequenceFlow.targetRef">
46 <div *ngIf="showCondition(sequenceFlow.sourceRef)" class="form-group row">
47 <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.CONNECTION_CONDITION' | translate}}</label>
48 <div class="col-md-9">
49 <input class="form-control" type="text" [(ngModel)]="sequenceFlow.condition">