Skip to main content

Posts

Showing posts with the label Ionic 3 angular 4 Confirmation Alerts Message

How to show a confirmation message before delete Items in Ionic 3 Angular 4?

This post helps us to understand about the display custom “Confirmation Alerts Message” using the Ionic 3 Angular 4. Please follow the below steps, It might help us to understands. Steps 1-  Used Actions Buttons to displayed alert and confirmation box     < ion-fab right bottom >       < button ion-fab color = "light" >< ion-icon name = "arrow-dropleft" ></ ion-icon ></ button >       < ion-fab-list side = "left" >         < button ion-fab >< ion-icon name = "trash" ( click )= "presentConfirm()" ></ ion-icon ></ button >         < button ion-fab >< ion-icon name = "md-information-circle" ( click ) = "infoAlert()" ></ ion-icon ></ button >               </ ion-fab-list > ...