Answers for "onclick close modal in angular"

0

angular modal dismisss

export class ModalPage {
  ...

  dismiss() {
    // using the injected ModalController this page
    // can "dismiss" itself and optionally pass back data
    this.modalCtrl.dismiss({
      'dismissed': true
    });
  }
}
Posted by: Guest on February-02-2021
0

my angular modal popup is not closing automatically

<button type="button" class="close" data-dismiss="modal" #closeAddExpenseModal>×</button>
Posted by: Guest on March-04-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language