-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UI Navigation -> UWL: Add new workitems #2768
- Loading branch information
Showing
7 changed files
with
369 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
dcm4chee-arc-ui2/src/app/widgets/dialogs/modify-ups/modify-ups.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<div class="vex vex-theme-os edit-ups" xmlns="http://www.w3.org/1999/html"> | ||
<div class="vex-dialog-form" (click)="checkClick($event)"> | ||
<h3 [innerHtml]="titleLabel"></h3> | ||
<input autocomplete="off" id="addPatientAttribut" class="addPatientAttribut" [(ngModel)]="addPatientAttribut" i18n-placeholder="@@placeholder.add_new_attribute" placeholder="Add new attribute" (click)="opendropdown = !opendropdown" (keydown)="pressedKey($event)"/> | ||
<div class="overlay" *ngIf="opendropdown" (click)="opendropdown = false"></div> | ||
<div id="dropdown" class="dropdown study_edit" *ngIf="opendropdown"> | ||
<a class="dropdown_element" name="{{m.code}}" *ngFor="let m of dropdown | search:addPatientAttribut" (click)="$event.preventDefault();addAttribute(m.code, ups)">({{m.codeComma}}) {{m.name}}</a> | ||
</div> | ||
<div mat-dialog-content> | ||
<iod-form-generator [externalInternalAetMode]="externalInternalAetMode" [object]="ups.attrs" [prefix]="" [mode]="mode" [iod]="iod" (keydown)="dialogKeyHandler($event,dialogRef)"></iod-form-generator> | ||
</div> | ||
<div class="template_checkboxes"> | ||
<label for="no_template"> | ||
<input id="no_template" type="radio" name="template_radio" [(ngModel)]="templateParameter" value="no_template"> Don't create template | ||
</label> | ||
<label for="template_too"> | ||
<input id="template_too" type="radio" name="template_radio" [(ngModel)]="templateParameter" value="template_too"> Create template too | ||
</label> | ||
<label for="only_template"> | ||
<input id="only_template" type="radio" name="template_radio" [(ngModel)]="templateParameter" value="only_template"> Create only template | ||
</label> | ||
</div> | ||
<div class="dialogbuttons"> | ||
<button class="save" type="button" (click)="dialogRef.close({object:ups,templateParameter:templateParameter})">{{saveLabel}}</button> | ||
<button class="cancle" type="button" (click)="dialogRef.close(null)" i18n="@@CANCEL">CANCEL</button> | ||
</div> | ||
</div> | ||
</div> |
11 changes: 11 additions & 0 deletions
11
dcm4chee-arc-ui2/src/app/widgets/dialogs/modify-ups/modify-ups.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.template_checkboxes{ | ||
margin:10px 0; | ||
float: left; | ||
width: 100%; | ||
border: 1px solid #ccc; | ||
padding: 10px; | ||
label{ | ||
float: left; | ||
width: 100%; | ||
} | ||
} |
Oops, something went wrong.