Implementation

The following vim files are provided by the infrastructure to support the view modals

Evidence_viewHeaderForModal.vim
Contains evidence header view information.
Evidence_listCorrectionHistory.vim
Contains a list showing the full correction history of an individual evidence record.

The Details page should use the new Evidence_viewHeaderForModal.vim file to display the evidence records header information while the correction history page should make use of the Evidence_listCorrectionHistory.vim.

The additional view history record page should basically be the same as the normal Details page, but without any links to the correction history list.

<PAGE
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:noNamespaceSchemaLocation="file://Curam/UIMSchema.xsd"
  PAGE_ID="MyProduct_viewMyEvidenceType"
  WINDOW_OPTIONS="height=400"
>

  <PAGE_PARAMETER NAME="caseID"/>
  <PAGE_PARAMETER NAME="evidenceID"/>
  <PAGE_PARAMETER NAME="evidenceType"/>
  
  <!-- In Page Navigation links -->

  <INCLUDE FILE_NAME="Evidence_viewHeaderForModal.vim"/>
  
  <!-- Evidence Fields -->
        
</PAGE>

<PAGE
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:noNamespaceSchemaLocation="file://Curam/UIMSchema.xsd"
  PAGE_ID="MyProduct_viewMyEvidenceTypeCorrectionHistory"
  WINDOW_OPTIONS="height=400"
>

  <!-- In Page Navigation links -->

  <INCLUDE FILE_NAME="Evidence_listCorrectionHistory.vim"/>

</PAGE>