Previous Topic: Post-processing Downloaded Search ResultsNext Topic: Set the Request Poll Period


Creating an Additional Download Button on the Toolbar

You can configure the iConsole to add a toolbar button to the Search Results screen that enables reviewers to download search results to a different format. To do this, you need to configure the <tool> element and DownloadResults function in the iConsole search definition. See the example below:

<tool name="TXT_download"
  tooltip="Download file in TXT format"
  icon="download-TXT.gif"
  function="DownloadTXT"/> 
<script> 
  <![CDATA[ 
    <script language="javascript"> 
    <!-- 
      function DownloadTXT() 
      {
        DownloadResults('txt'); 
      } 
    --> 
    </script> 
  ]]> 
</script>
…