how to update parent data after returning from modal in ionic4

async editstarttext(type) {
console.log(type);
const modal = await this.modalController.create({
component: ModalalertPage
});
let dataReturned;
//ondismiss parent page refresh
modal.onDidDismiss().then((modalData) => {
dataReturned = modalData.data;
console.log(dataReturned.dismissed);
this.ionViewWillEnter();
});
return await modal.present();
}

close modal
dismis(){
this.modalController.dismiss({
'dismissed': true
});
}


Comments

Popular posts from this blog

Your app currently targets API level 27 and must target at least API level 28 to ensure it is built on the latest APIs optimized for security and performance. Change your app's target API level to at least 28

ionic project creation

change root user in ubuntu