Additional case detail page

Introduction

The additional case detail page shows all custom fields of a case by clicking on Show business details link in case detail.

You can customize this page for each case by providing a relative URL to case.

Customization

  1. Create a new additional case detail UI and a start process which will display the new UI.

    customization-additional-case-details-page

  2. When create task, store the URL of start process in CUSTOMIZATION_ADDITIONAL_CASE_DETAILS_PAGE custom fields of case. You could use SetAdditonalCaseDetailPage.mod callable process, and input the friendly URL of process as parameter.

    set-additonal-case-detail-page-callable-process

  3. Only if your custom additional case page uses iFrame, then you need some more settings Window property in your page

    • window.isHideCaseInfo = true;

    • window.isHideTaskAction = true;

    • window.isHideTaskName = true;

    • window.isWorkingOnATask = false;

    • window.viewName = ‘’;

    customization-additional-case-details-page-iframe

    In your custom start process, create a custom string field name for case with name: embedInFrame, value true

    start-case-details-page-iframe