Export Setting in PDF mode is too Long
Export Setting in PDF mode is too Long
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
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
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.
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
Hello,
My screen resolution 1366x768 and appear on it, but system is web application and we can't assume what is screen resolution is !.
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 (51.96 KiB) Viewed 3829 times
Re: Export Setting in PDF mode is too Long
Hello.
Yes, we will make an improvement in one of our next builds.
Thank you.
Yes, we will make an improvement in one of our next builds.
Thank you.
Re: Export Setting in PDF mode is too Long
Hello,
Thank you , but is there any work around before next build ?
Thank you , but is there any work around before next build ?
Re: Export Setting in PDF mode is too Long
Hello.
As a workaround, you could switch to the Fullscreen mode (F11).
Thank you.
As a workaround, you could switch to the Fullscreen mode (F11).
Thank you.
Re: Export Setting in PDF mode is too Long
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?
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
Hello.
Yes, you could use this code. It should work right.
Thank you.
Yes, you could use this code. It should work right.
Thank you.
Re: Export Setting in PDF mode is too Long
Hello.
We have made an improvement.
The export settings could be collapsed now.
Please, check our next build.
Thank you.
We have made an improvement.
The export settings could be collapsed now.
Please, check our next build.
Thank you.