Created
October 2, 2018 06:28
-
-
Save Hawksbillcat/eace6b4a73af1cdb2f2d7f2ca236e03e to your computer and use it in GitHub Desktop.
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
<ion-item> | |
<ion-select [(ngModel)]="group" [selectOptions]="musicAlertOpts" placeholder="Choose a Category"> | |
<ion-option *ngFor="let group of iris_group" >{{group}}</ion-option> | |
</ion-select> | |
</ion-item> | |
//------------------------------------------------------------------------------------------------------------// | |
console.log( "group = "+this.group); | |
console.log( "name "+this.contact_name); | |
console.log( "relationship = "+this.relationship); | |
console.log( "ID = "+id); | |
console.log("phoneNumber = "+(this.dp.get_phone_number())) | |
let phonebook_test={ | |
user_name:this.contact_name, | |
group:this.group, | |
relationship:this.relationship, | |
index:id, | |
isChecked:false, | |
phoneNumber:this.dp.get_phone_number() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment