Electron: File dialog window should be focused until decision

2.3k Views Asked by At

How to force the file dialog window to be always open on the top until the user choose a file or closes the window? The user should not be able to navigate to other windows in the application.

1

There are 1 best solutions below

0
On BEST ANSWER

I found the solution in the docs https://github.com/electron/electron/blob/master/docs/api/dialog.md#dialogshowopendialogbrowserwindow-options-callback

The dialog should be set to modal. If the window is modal it disables the parent window. It can be set to modal with passing browserWindow parameter as first argument when calling showSaveDialog function.

Excepted format:

dialog.showOpenDialog([browserWindow, ]options[, callback])