Export Setting in PDF mode is too Long

Stimulsoft Reports.WEB discussion
Post Reply
a.ebbini
Posts: 101
Joined: Thu Jun 05, 2014 8:10 am
Location: Jordan

Export Setting in PDF mode is too Long

Post by a.ebbini »

Hello,
I am using web report viewer 2016.1.28 , when i click on save as PDF an too long export setting will appear and i have to zoom out to see OK button so is there a way to hide some options so the export setting will be smaller or can i add vertical scroll on export setting popup.

Thank you
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Export Setting in PDF mode is too Long

Post by HighAley »

Hello.

Could you send us a screen-shot of this dialog to understand how large it is.
What screen resolution is used on your system?

Thank you.
a.ebbini
Posts: 101
Joined: Thu Jun 05, 2014 8:10 am
Location: Jordan

Re: Export Setting in PDF mode is too Long

Post by a.ebbini »

Hello,
My screen resolution 1366x768 and appear on it, but system is web application and we can't assume what is screen resolution is !.
Attachments
PDFExportSetting.png
PDFExportSetting.png (51.96 KiB) Viewed 3832 times
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Export Setting in PDF mode is too Long

Post by HighAley »

Hello.

Yes, we will make an improvement in one of our next builds.

Thank you.
a.ebbini
Posts: 101
Joined: Thu Jun 05, 2014 8:10 am
Location: Jordan

Re: Export Setting in PDF mode is too Long

Post by a.ebbini »

Hello,
Thank you , but is there any work around before next build ?
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Export Setting in PDF mode is too Long

Post by HighAley »

Hello.

As a workaround, you could switch to the Fullscreen mode (F11).

Thank you.
a.ebbini
Posts: 101
Joined: Thu Jun 05, 2014 8:10 am
Location: Jordan

Re: Export Setting in PDF mode is too Long

Post by a.ebbini »

Hello,
It is hard to tell all users to press F11 but i try this code and it is work for me,do you have any comment on it,any that i didn't take into account?

Code: Select all

function PrintReport(Mode) {
    if (Mode == 'PrintWithoutPreview') {
        jsRV.postPrint(Mode)
    } else {        
        if (jsRV.options.exports.showExportDialog) {
            jsRV.controls.forms.exportForm.show(Mode, jsRV.options.actions.exportReport);
            $(jsRV.controls.forms.exportForm).css("top", "0");
            if (Mode == "Pdf") {
                $(jsRV.controls.forms.exportForm).css("overflow-y", "scroll");
                $(jsRV.controls.forms.exportForm).css("height", "416px");
            } else {
                $(jsRV.controls.forms.exportForm).css("overflow-y", "hidden");
                $(jsRV.controls.forms.exportForm).css('height', 'auto')
            }
        } else
            jsRV.postExport(exportType, jsRV.getDefaultExportSettings(Mode));
    }
}
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Export Setting in PDF mode is too Long

Post by HighAley »

Hello.

Yes, you could use this code. It should work right.

Thank you.
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Export Setting in PDF mode is too Long

Post by HighAley »

Hello.

We have made an improvement.
The export settings could be collapsed now.
Please, check our next build.

Thank you.
Post Reply