jarek-foksa / xel

Xel - Widget toolkit for building native-like Electron and Web apps
https://xel-toolkit.org
Other
691 stars 59 forks source link

Closing Dialog box #83

Closed Rohit-Metapercept closed 5 years ago

Rohit-Metapercept commented 5 years ago

Hi , I am using dialog box and I am not getting any way to close the dialog box on button click . Is there any way to close it without on pointer event?

jarek-foksa commented 5 years ago

You should use dialog.close() method.

Rohit-Metapercept commented 5 years ago

I tried this but it's not getting close

`

jarek-foksa commented 5 years ago

Does this work for you?

let button = document.querySelector("x-button#disagree-button");
let dialog = document.querySelector("dialog");

button.addEventListener("click", (event) => {
  dialog.close();
});
Rohit-Metapercept commented 5 years ago

Yes this worked for me. Thanks, got the idea.