10-22-2025, 06:56 AM
Currently there is no option to disable it. It's easy to disable it via JavaScript though:
IW.$('iw-dlg-btn2').disabled = true;
each button is named "iw-dlg-btn" + the position of the button, from left to right, the first is 1.
The code above would disable the second button in the dialog. Does it solve your problem?
IW.$('iw-dlg-btn2').disabled = true;
each button is named "iw-dlg-btn" + the position of the button, from left to right, the first is 1.
The code above would disable the second button in the dialog. Does it solve your problem?

