ankosoftware / ng2-bootstrap-modal

Library to simplify the work with bootstrap modal dialogs
MIT License
54 stars 63 forks source link

How to close the dialog #40

Open HereWeR opened 7 years ago

guillaumegarcia13 commented 7 years ago

Hi,

You have several options.

  1. Set 'autoCloseTimeout' from the options
const disposable = this.dialogService.addDialog(
    ConfirmComponent, 
    {},
    { autoCloseTimeout: 5000 }  // <--- here
);
  1. Use a setTimeout and call unsubscribe on the return object of addDialog
const disposable = this.dialogService.addDialog(...);
...
setTimeout(() => {
  disposable.unsubscribe();   //  <--- here
}, 10000);

Please, do check Live Demo at: https://plnkr.co/edit/MB6NnzfhicMyAiMJy6YM?p=preview