BackPrevious Page Next PageNext

Advanced Exporting with JSPs

Exporting the result by using a JavaScript function

Customizing buttons for one-step exporting

Controlling user access to different export formats

Customizing warning messages

This section introduces the export functions that need to be customized using JSPs.

Exporting the result by using a JavaScript function

JReport provides you with a JavaScript function which allows you to open the report result or export it in a specified format. You can find this function in the file API.js in <install_root>\public_html\javascript\dhtml, as shown below:

function user_oneStepExport(type, options)

The following explains this function's two parameters, type and options, in detail.

type - Specifies the export format.

options - Specifies the values of the options of each format. It is a string array whose member is of the format "key=value". The options and their usage are listed as follows:

Key Description Available Value Default Value
HTML
to_ver Specifies whether or not to save the result to version. true, false false
to_open Specifies whether or not to export and open the result file. true, false false
to_local Specifies whether or not to save the result to a local file. true, false false
browser Specifies the web browser type. 0 - IE or Chrome

1 - Firefox

0
imagetype Specifies the type of the images in the result file. 0 - Decided by JReport

1 - GIF

2 - JPG

0
overflow Specifies the overflow type. 0 - VISIBLE

1 - HIDDEN

2 - VERFLOWCOUNT

0
resolution Specifies the HTML resolution. Any integer between 1 and 4294967296 96
title Specifies the title for the HTML file. Any string ""
applet Specifies whether or not to export chart in Java applet format. true, false true
css Specifies whether or not to embed the cascading style sheet in the exported HTML files. true, false false
multi Specifies whether or not to generate an HTML file for each page of the report result. true, false false
hyperlink Specifies whether or not to contain hyperlinks in the HTML file. true, false false
pagenumber Specifies whether or not to contain page numbers in the HTML file. true, false false
drilldown Specifies whether or not to include the drilled-down file in the exported HTML file. true, false false
no_margin Specifies whether or not to remove the original margins. true, false false
absolute Specifies whether or not to make the font size fixed in the web browser. true, false false
PDF
to_ver Specifies whether or not to save the result to version. true, false false
to_open Specifies whether or not to export and open the result file. true, false false
to_local Specifies whether or not to save the result to a local file. true, false false
no_margin Specifies whether or not to remove the margin. true, false false
simulate Specifies whether or not the mode is to be Simulated Printing Mode. true, false true
standard Specifies whether or not to set the mode as Standard Mode. true, false false
content Specifies whether or not to contain the TOC in the exported PDF file. true, false false
drilldown Specifies whether or not to include the drilled-down file in the exported PDF file. true, false false
encrypt Specifies whether or not to encrypt the report result. true, false false
compress Specifies whether or not to compress the images in the report. true, false false
ratio Specifies the percentage with which to compress the images in the report. Any integer between 1 to 100 20
compatibility Specifies the encryption compatibility. 0 - Acrobat 3.0 and later

1 - Acrobat 5.0 and later

1
doc_psw Specifies the password for opening the PDF file when encrypt=true. Any string ""
permi_pasw Specifies the password for printing and editing the PDF file when encrypt=true. Any string ""
printing Specifies the PDF printing mode. 0 - Prevents users from printing the file

4 - Allows low resolution-printing

2052 - Allows high-resolution printing

0
changes Defines which editing actions are allowed in the PDF file. 0 - Prevents users from making any changes to the file

1024 - Allows inserting, deleting, and rotating pages

256 - Allows users to fill in form fields and adding digital signatures.

32 - Allows users to fill in form fields and add digital signatures and comments

40 - Allows users to do anything except extracting pages

2108 - Allows all

0
enable_copy Specifies whether or not to allow users to copy the file contents. true, false false
enable_access Specifies whether or not to let visually impaired users read the document with window readers. true, false true
PostScript
to_ver Specifies whether or not to save the result to version. true, false false
to_open Specifies whether or not to export and open the result file. true, false false
to_local Specifies whether or not to save the result to a local file. true, false false
no_margin Specifies whether or not to remove the margins in the PS file. true, false false
RTF
to_version Specifies whether or not to save the result to version. true, false false
to_open Specifies whether or not to export and open the result file. true, false false
to_local Specifies whether or not to save the result to a local file. true, false false
rtf_flow Specifies whether or not to apply a flow layout when exporting the report to RTF. true, false false
no_margin Specifies whether or not to remove the margins in the RTF file. true, false false
Text
to_ver Specifies whether or not to save the result to version. true, false false
to_open Specifies whether or not to export and open the result file. true, false false
to_local Specifies whether or not to save the result to a local file. true, false false
repeat Specifies whether or not to replace a field value of a record with that of its previous record if the field value is null. true, false false
compress Specifies whether or not to compress the clearance between columns. true, false false
win_linebreak Specifies whether or not to use Windows end-of-line characters. true, false true
normal Specifies whether or not to generate the report result to a standard text file. true, false true
quote_mark Specifies whether or not to mark the fields in the exported file with quotation marks. true, false false
head_foot Specifies whether or not to contain all headers and footers in the report. true, false true
delimiter Specifies the delimiter. Any single character  
width Specifies the user-defined character width. An integer  
height Specifies the user-defined character height. An integer  
Excel
to_ver Specifies whether or not to save the result to version. true, false false
to_open Specifies whether or not to export and open the result file. true, false false
to_local Specifies whether or not to save the result to a local file. true, false false
wrap Specifies the word-wrap setting. 0 - All Keep Existing

1 - All Disabled

2 - All Enabled

0
new_layout Specifies whether or not to use the new layout mode. true, false true
shapes Specifies whether or not to include the shapes in the exported file. true, false false
excel_2000 Specifies whether or not to export the result in Data Format, which means only the report data will be exported without format. true, false false
advanced Specifies whether or not to apply the advanced options. true, false false
header Specifies the page header text. Any string  
footer Specifies the page footer text. Any string  
gridline Specifies whether or not to print gridlines when printing the exported Excel file. true, false false
XML
to_ver Specifies whether or not to save the result to version. true, false false
to_open Specifies whether or not to export and open the result file. true, false false
to_local Specifies whether or not to save the result to a local file. true, false false
only_data Specifies whether or not to only contain the database column information in the exported XML file. true, false false
schema Specifies the name of an existing schema file with its full path with which to generate the XML file. An existing schema file with its full path.  

Notes:

Customizing buttons for one-step exporting

Seven buttons are provided for one-step exporting. They are Export to PDF, Export to Excel, Export to RTF, Export to HTML, Export to Text, Export to PS, and Export to XML. By default, the buttons are invisible on the Page Report Studio toolbar. You have to add them to the toolbar by modifying the index.jsp file in <install_root>\public_html\dhtmljsp.

Use the following two API functions to control the buttons:

Explanation of these parameters:

For example, if you want to add the Export to HTML button to the Page Report Studio toolbar, then:

  1. Open the file index.jsp.
  2. Add the code

    int[] temparray = {DHTMLConstant.TOOLBAR_EXPORTTOHTML};
    dhtmlConfig.customizeToolbar(SessionID, RptSetId, "Standard", temparray, true);

    before

    //<!-- Tool Bar -->
    if(dhtmlConfig.isFeatureEnabled(SessionID, RptSetId, DHTMLConstant.FEATURE_TOOLBAR)){

  3. Start JReport Server.
  4. Run a report in Page Report Studio, and you will see a new button Export to HTML is displayed on the toolbar.

To add more than one button to the toolbar area, for example, adding Export to HTML and Export to PDF buttons to the toolbar:

  1. Open the file index.jsp.
  2. Add the code

    int[] temparray = {DHTMLConstant.TOOLBAR_EXPORTTOHTML, DHTMLConstant.TOOLBAR_EXPORTTOPDF};
    dhtmlConfig.customizeToolbar(SessionID, RptSetId, "Standard", temparray, true);

    before

    //<!-- Tool Bar -->
    if(dhtmlConfig.isFeatureEnabled(SessionID, RptSetId, DHTMLConstant.FEATURE_TOOLBAR)){

  3. Start JReport Server.
  4. Run a report in Page Report Studio and you will see the buttons Export to HTML and Export to PDF are displayed on the toolbar.
  5. Click the added button on the toolbar of the report page, the report will be exported to the corresponding format, using the default values of the format options.

Controlling user access to different export formats

JReport introduces an access control ability which can restrict different users to export report result to different formats. This is achieved by passing values to the global variable enableTypes in both customize_panel.jsp and save_result.jsp files in the <install_root>\public_html\dhtmljsp folder. The value of enableTypes should be Integer, and JReport gives you the following integers to represent the corresponding report result types:

Report Result Format Int. Value
HTML 0
PDF 1
Excel 2
Text 3
RTF 4
XML 5
PostScript 6

You can specify a value or an array to enableTypes using the integers in the above table. Or you can also use the integers which are not mentioned above, but if you do so, the Int. values will be ignored, and do not function. That is to say, if you pass the array {1,2,5,9,-2} to enableTypes, 9 and -2 will be ignored and {1,2,5} will work, so PDF, EXCEL, XML formats can be in use.

Assume that there are two users, user1 and user2. When user1 logs on, run a report in Page Report Studio, he can only export the report result as PDF and HTML formats. While user2 can export the report result as RTF and XML formats when logging on. To realize it, you can use the following codes in customize_panel.jsp or save_result.jsp file:

int[] enableTypes=null;
String UserName=null;
UserName=DHTMLUtil.getUserName(request);
if(UserName.equalsIgnoreCase("user1"))
enableTypes=new int[]{1,0}; 
if(UserName.equalsIgnoreCase("user2"))
enableTypes=new int[]{4,5};

Customizing warning messages

You can customize the warning messages when exporting the report result to XML through Page Report Studio. With this function, you can specify what you want to show as a warning message. The custom warning messages are supported across web browsers.

To customize the warning messages, you need to customize the jsp files using either of the following two methods:

Method 1

  1. Open the save_result.jsp file in the <install_root>\public_html\dhtmljsp folder with your favorite editor.
  2. Specify the value of customMsgForXML in the save_result.jsp to whatever you want. The value cannot be "" or null.
  3. Run a report in Page Report Studio, click Menu > File > Export to display the Export dialog.
  4. Select XML from the Select Report Result Format drop-down list, and if necessary, modify other properties as required, then click OK.
  5. A warning message shows as you have defined.

Method 2

You can also export the report result via the Export panel instead of clicking Menu > File > Export. By default, the panel is hidden. So, the following is another way to create custom warning messages:

  1. Open the customize_panel.jsp file in the <install_root>\public_html\dhtmljsp folder with your favorite editor.
  2. Set the class of panelDIV to visibleMargin to show the Export panel on web browser.
  3. Specify the value of customMsgForXML in customize_panel.jsp.
  4. Run a report in Page Report Studio, and the Export panel together with the report shows.
  5. Select XML from the Select Report Result Format drop-down list, and if necessary, modify other properties as required, then click OK.
  6. A warning message shows as you have defined.

For example, using method2, when you need to export the report result as XML, and if you want to show "This is IE Browser" while browser is IE, you need to set panelDIV in customize_panel.jsp file to visibleMargin as follows:

<div id="<%=DHTMLConstant.DHTML_PREFIX%>panelDIV" class="visibleMargin">

And then customize CustomMsgForXML in the same jsp file as follows:

String browserName=request.getHeader("User-Agent");
String customMsgForXML ="This is "+browserName;

Access JReport Server via IE, run a report in Page Report Studio, select XML from the Select Report Result Format drop-down list in the Export panel, and click OK. Then a pop-up box will show you "This is IE Browser".

BackPrevious Page Next PageNext