How to implement Close button on Dashboard

Good day,

We have a dashboard application that has three different apps. The dashboard app is called to open in a new browser window.

I need to put a “Close” button in one off the apps on the dashboard to close the browser.

I tried various things like putting a Button on the form with Javascript

window.close;

However, this does not work. The standard ScriptCase “Exit” button also does not appear on a apps on a Dashboard application so I can’t use that.

How would I implement a Close button on a Dashboard app?

Any input on this for me please?

a Javascript button with
window.parent.close();

1 Like

this worked, thank you @gbravi for your help