You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <h3>Notizen</h3>
- <div class="button" id="create-history" (click)="create()" *ngIf="hasRights">Notiz hinzufügen</div>
- <form class="searchForm">
- <input type="text" name="search" class="search" (input)="searchFormSubmit($event)" placeholder="Notiz suchen" />
- <button class="resetSearch" [hidden]="!resetSearchBtn"></button>
- </form>
- <div class="ag-grid-box">
- <ag-grid-angular
- style="width: 100%;height: 100%;"
- class="ag-theme-balham"
- [defaultColDef]="defaultColDef"
- [rowData]="rowData"
- [columnDefs]="columnDefs"
- [suppressCellSelection]="true"
- [animateRows]="true"
- [enableCellTextSelection]="true"
- (gridReady)="onGridReady($event)"
- (rowClicked)="rowClicked($event)"
- >
- </ag-grid-angular>
- </div>
-
- <app-spt-modal [overlay]="true" #modalCustomerNoteDetail>
- <app-customer-note-detail #customerNoteDetail (editNote)="editCustomerNoteFunction($event)"
- (deleteNote)="deleteCustomerNoteFunction($event)"></app-customer-note-detail>
- </app-spt-modal>
-
- <app-spt-modal [overlay]="true" #modalCustomerNoteEdit>
- <div id="customer-note-modal">
- <app-customer-note-edit #customerNoteEdit (createNote)="createCustomerNoteFunction($event)"></app-customer-note-edit>
- </div>
- </app-spt-modal>
|