Skip to content
Snippets Groups Projects
Commit 8738ad9e authored by Pegane Nestor's avatar Pegane Nestor
Browse files

FEAT #7970 dynamic contact number

parent b0ae496a
No related branches found
No related tags found
No related merge requests found
......@@ -123,7 +123,7 @@
<mat-sidenav *ngIf="!creationMode" #snav2 [mode]="mobileQuery.matches ? 'over' : 'side'" [fixedInViewport]="mobileQuery.matches"
fixedTopGap="56" position='end' [opened]="mobileQuery.matches ? false : true" style="overflow-x:hidden;width:40%;">
<mat-list>
<h3 mat-subheader>{{contactsGroup.nbContacts}} {{lang.relatedContacts}} : </h3>
<h3 mat-subheader>{{nbContact}} {{lang.relatedContacts}} : </h3>
</mat-list>
<div class="row" style="margin:0px;">
<div class="col-md-6 col-xs-6">
......
......@@ -132,6 +132,7 @@ export class ContactsGroupAdministrationComponent implements OnInit {
this.http.post(this.coreUrl + 'rest/contactsGroups/' + this.contactsGroup.id + '/contacts', { 'contacts': this.selection.selected })
.subscribe((data: any) => {
this.notify.success(this.lang.contactAdded);
this.nbContact = this.nbContact + this.selection.selected.length;
this.selection.clear();
elem.textContent = this.lang.add;
this.contactsGroup = data.contactsGroup;
......@@ -181,7 +182,7 @@ export class ContactsGroupAdministrationComponent implements OnInit {
this.contactsGroup.contacts[row] = this.contactsGroup.contacts[lastElement];
this.contactsGroup.contacts[row].position = row;
this.contactsGroup.contacts.splice(lastElement, 1);
this.nbContact = this.nbContact - 1;
this.dataSourceAdded = new MatTableDataSource(this.contactsGroup.contacts);
this.dataSourceAdded.paginator = this.paginatorAdded;
this.dataSourceAdded.sort = this.sortAdded;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment