Page 1 of 1

Replace send email dialog

Posted: Tue Jul 23, 2019 9:10 am
by jpgb
Can we replace or change the send email modal dialog?

Everything is fine with the modal dialogue, but I need to add one more field...

Thanks
JB

Re: Replace send email dialog

Posted: Wed Jul 24, 2019 8:02 am
by Lech Kulikowski
Hello,

Please try to use the following code:

Code: Select all

jsStiWebViewer1.onready = function () {
        var sendEmailMenu = jsStiWebViewer1.controls.menus.sendEmailMenu;

        if (sendEmailMenu) {
            sendEmailMenu.action = function (menuItem) {
                this.changeVisibleState(false);
                alert(menuItem.key);
            }
        }
    }
Thank you.