Skip to content

Instantly share code, notes, and snippets.

@Hawksbillcat
Created October 2, 2018 06:28
Show Gist options
  • Save Hawksbillcat/eace6b4a73af1cdb2f2d7f2ca236e03e to your computer and use it in GitHub Desktop.
Save Hawksbillcat/eace6b4a73af1cdb2f2d7f2ca236e03e to your computer and use it in GitHub Desktop.
<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