Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

P-dialog is not closing on outside screen click in the mobile app screen

Tags:

angular

ionic3

I am showing P-dialog in the image click.When I click/select out side the dialog in the app screen the dialog is not closing.

How to close p-dialog on any selection of place in the screen i.e outside of the dialog?

like image 691
Prasanna Avatar asked Sep 10 '25 13:09

Prasanna


1 Answers

You can set flag [dismissableMask]="true" to close the modal on clicking outside.

<p-dialog [(visible)]="display" [dismissableMask]="true"></p-dialog>

like image 173
Shadab Mehdi Avatar answered Sep 13 '25 04:09

Shadab Mehdi