Previous Topic: Toolbar Button to Show Excel Spreadsheet

Next Topic: Custom Results Formatting

Built-In Functions

The SE_ShowExcel() function can be examined to see how the capability is implemented. It depends on the following built-in functions:

GetResultsComponent();

This function retrieves the container for the OWC component.

ShowResultsComponent(display);

Shows the OWC component container and hides the results table when 'display' is true or shows the results table and hides the OWC component container when false.

GetResultsTable();

This function retrieves the standard results table so that the data can be copied into the OWC component.

Because this process can only extract the results that are displayed on a single iConsole search results page, you would typically override the default page size (25 results). You do this using the page_size attribute of the <results> element. To ensure that all results are captured, you need to set page_size to be the same as the MaximumResultsSetSize registry value on the application server (this registry value specifies the maximum number of results returnable by an iConsole search and defaults to 1000; see the Deployment Guide for details).

Because this process can only extract the results that are displayed on a single iConsole search results page, you would typically override the default page size (25 results). You do this using the page_size attribute of the <results> element (see page ). To ensure that all results are captured, you need to set page_size to be the same as the MaximumResultsSetSize registry value on the application server (this registry value specifies the maximum number of results returnable by an iConsole search and defaults to 1000; see the Deployment guide for details).

Note: Be aware that setting page_size to a very large value will affect search performance, so search results will take longer to display and may cause a time-out.Be aware that setting page_size to a very large value will affect search performance, so search results will take longer to display and may cause a time-out.