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.
 
 
 
 
 

33 lines
1.2 KiB

  1. <h3>Notizen</h3>
  2. <div class="button" id="create-history" (click)="create()" *ngIf="hasRights">Notiz hinzufügen</div>
  3. <form class="searchForm">
  4. <input type="text" name="search" class="search" (input)="searchFormSubmit($event)" placeholder="Notiz suchen" />
  5. <button class="resetSearch" [hidden]="!resetSearchBtn"></button>
  6. </form>
  7. <div class="ag-grid-box">
  8. <ag-grid-angular
  9. style="width: 100%;height: 100%;"
  10. class="ag-theme-balham"
  11. [defaultColDef]="defaultColDef"
  12. [rowData]="rowData"
  13. [columnDefs]="columnDefs"
  14. [suppressCellSelection]="true"
  15. [animateRows]="true"
  16. [enableCellTextSelection]="true"
  17. (gridReady)="onGridReady($event)"
  18. (rowClicked)="rowClicked($event)"
  19. >
  20. </ag-grid-angular>
  21. </div>
  22. <app-spt-modal [overlay]="true" #modalCustomerNoteDetail>
  23. <app-customer-note-detail #customerNoteDetail (editNote)="editCustomerNoteFunction($event)"
  24. (deleteNote)="deleteCustomerNoteFunction($event)"></app-customer-note-detail>
  25. </app-spt-modal>
  26. <app-spt-modal [overlay]="true" #modalCustomerNoteEdit>
  27. <div id="customer-note-modal">
  28. <app-customer-note-edit #customerNoteEdit (createNote)="createCustomerNoteFunction($event)"></app-customer-note-edit>
  29. </div>
  30. </app-spt-modal>