Appreciate any help as I am getting a warning that “The Property OUTPUT_FORMAT.PDF is deprecated”. Cannot find any notes on what I should be doing to correct this.
My code is:
//Compile the jasper report
plugins.jasperPluginRMI.compileReport(vForm)
//Run the jasper report
plugins.jasperPluginRMI.runReport(fs, vForm, vFFile, OUTPUT_FORMAT.PDF,null);
Hi Patrick
Thanks. all solved now.
Do you know if there is a list of things to do and know when upgrading to 6.1
I’m finding a number of things as I go along, and it’s been a bit frustrating.
Subtypes of plugins (for example JSFile of the file plugin) must now be prefixed with their plugin name when used in JSDoc for typing, to prevent clashes between different plugins having sub types using the same name. Example: use @type {plugins.file.JSFile} instead of @type {JSFile}