Page 1 of 1
Export Setting in PDF mode is too Long
Posted: Wed Sep 21, 2016 6:44 am
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
Re: Export Setting in PDF mode is too Long
Posted: Thu Sep 22, 2016 11:32 am
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.
Re: Export Setting in PDF mode is too Long
Posted: Thu Sep 22, 2016 12:01 pm
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 !.
Re: Export Setting in PDF mode is too Long
Posted: Fri Sep 23, 2016 9:21 am
by HighAley
Hello.
Yes, we will make an improvement in one of our next builds.
Thank you.
Re: Export Setting in PDF mode is too Long
Posted: Sat Sep 24, 2016 2:19 pm
by a.ebbini
Hello,
Thank you , but is there any work around before next build ?
Re: Export Setting in PDF mode is too Long
Posted: Mon Sep 26, 2016 9:52 am
by HighAley
Hello.
As a workaround, you could switch to the Fullscreen mode (F11).
Thank you.
Re: Export Setting in PDF mode is too Long
Posted: Mon Sep 26, 2016 10:58 am
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));
}
}
Re: Export Setting in PDF mode is too Long
Posted: Mon Sep 26, 2016 11:32 am
by HighAley
Hello.
Yes, you could use this code. It should work right.
Thank you.
Re: Export Setting in PDF mode is too Long
Posted: Wed Oct 19, 2016 2:23 pm
by HighAley
Hello.
We have made an improvement.
The export settings could be collapsed now.
Please, check our next build.
Thank you.