Versions Compared

Key

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

Description

The dashboard.json contains configurations that allows different display controls to be displayed on the patient dashboard. 

Steps

Every display control on the patient dashboard requires a particular configuration to be added to the dashboard.json which allows it to appear and also defines what values the display control will show.

 

  1. Configuring patient information section: 

      The following configuration, when added to the dashboard.json will enable the patient information display control. This will contain the following details :

  1. Patient information
  2. Address information

 

Code Block
"sections": {
            "patientInformation": {
                "title": "Patient Information",
                "name": "patientInformation",
                "displayOrder": 0,
                "ageLimit":100,
                "patientAttributes": [ "Class",
                "education",
                "occupation",
                "secondaryContact"],
                "addressFields": [
                    "address1",
                    "address2",
                    "cityVillage",
                    "countryDistrict"
                ]
            }

Note : The patient attributes that will be displayed on the display control are mapped to the person attributes in OpenMRS and the address fields are mapped to address hierarchy in OpenMRS.

When this configuration is added to the dashboard.json, the following display control (highlighted in red) will appear on the patient dashboard.

 

 

Configuring Diagnosis display control

The following configuration, when added to the dashboard.json will enable the diagnosis display control.

Code Block
"diagnosis": {
  "title": "Diagnosis",
  "translationKey": "DASHBOARD_TITLE_DIAGNOSIS_KEY", //This line is applicable only for internationalization.	
  "showRuledOutDiagnoses": false,
  "name": "diagnosis",
  "showCertainty": true,
  "showOrder": true,
  "showDetailsButton":true
}

 

 

 

 

 

Tip
titleOn this Page

Table of Contents