Controlling the Externalization of JavaScript Files

How to:

Because all JavaScript processing is performed in the memory of the web browser, an active report has a processing limit of approximately 5,000 records or 100 pages of output. The SET AROUTPUT = EXTJS command enables you to use external JavaScript files instead of embedding the JavaScript within the HTML output file, in order to improve performance at run time.

The SET AROUTPUT = EXTJS command:


Top of page

x
Syntax: How to Control the Externalization of JavaScript Files

The syntax for the command is as follows. You can add the command to the profile (edasprof.prf) or to the WebFOCUS procedure that generates the active report.

SET AROUTPUT = {EXTJS|ALL}

where:

EXTJS

Uses external JavaScript files instead of embedding the JavaScript within the HTML output file.

ALL

Embeds the JavaScript within the HTML output file. Maintains disconnected mode for active reports. ALL is the default value.

Note: Starting with WebFOCUS Version 8.0.01, make sure to use the command SET AROUTPUT = ALL to allow users to save an active report or document with the browser Save as option.


WebFOCUS