Replace send email dialog

Stimulsoft Reports.JS discussion
Post Reply
jpgb
Posts: 67
Joined: Tue Mar 15, 2016 11:42 am

Replace send email dialog

Post 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
Lech Kulikowski
Posts: 6254
Joined: Tue Mar 20, 2018 5:34 am

Re: Replace send email dialog

Post 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.
Post Reply