Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleSteps to include html in the allowed file types:
  1. Go to Navigation Menu > Settings

  2. Search “Allowed File Types”

  3. Observe Check if ‘html’ is included in the setting. If not, click on the setting

  4. Copy all the original allowed file types from the “Existing Value”. Paste it in “New Value”, put a comma and add include ‘html’ along with it. Click “Update” once done.

    Image RemovedImage Added

Consent Statements

...

The consent form could have fields like consent witness, consent date, eSignatures, etc. These fields are to be added in a custom form attached at to the “Consent Document Custom Fields” level. A single form is maintained for consent custom fields across the system to avoid duplicating fields across CPs and making it easy for reporting.

...

The date control fields can be set to show the current date and timestamp time by default.

Example: The ‘Consent Date’ should display the default value as current date and time.

Expand
titleSteps for setting the default value to date fields

Ensure that the control type in the consent custom fields form is updated to ‘Date and Time’.

In the consent HTML, the code for ‘Consent Date’ field needs to be updated as below:

Code Block
languagehtml
<div class="clearfix">
    <div class="col-xs-8 os-no-left-padding">
      <os-date-picker name="consentDate" date="ectx.customFields.consentDate" default-current-date></os-date-picker>
    </div>
    <div class="col-xs-4 os-no-left-padding">
		  <timepicker class="os-time-no-wheels" ng-model="ectx.customFields.consentDate" show-meridian="false"></timepicker>
		</div>
    </div>

The ‘os-date-picker’ sets the value to current date and the timepicker time picker allows the display of current timestamp.

...