...
Expand |
---|
A. Demographics Information B. Social History
Similarly, add other fields of social history. C. Physical Exam Findings Add HT, WT, BMI & Heart Rate : In order to add measurements for height, weight, BMI, and heart rate, use 'Number Field'. Note Calculated fields are not supported currently, for example, to automatically calculate BMI based on height and weight. This is in the roadmap to support. To add all the four fields in a single row, create these fields on UI → Download the form XML → Add these four fields in <row></row> tag and upload the updated XML file as shown in the below code. Code Block |
---|
|
|
<row>
<numberField>
<name>hT</name>
<udn>hT</udn>
<caption><![CDATA[HT]]></caption>
<phi>false</phi>
<mandatory>false</mandatory>
<toolTip><![CDATA[]]></toolTip>
<showLabel>true</showLabel>
<showInGrid>false</showInGrid>
<hidden>false</hidden>
<width>8</width>
<defaultValue><![CDATA[]]></defaultValue>
<noOfDigits>6</noOfDigits>
<noOfDigitsAfterDecimal>2</noOfDigitsAfterDecimal>
</numberField>
<numberField>
<name>wT</name>
<udn>wT</udn>
<caption><![CDATA[WT]]></caption>
<phi>false</phi>
<mandatory>false</mandatory>
<toolTip><![CDATA[]]></toolTip>
<showLabel>true</showLabel>
<showInGrid>false</showInGrid>
<hidden>false</hidden>
<width>8</width>
<defaultValue><![CDATA[]]></defaultValue>
<noOfDigits>6</noOfDigits>
<noOfDigitsAfterDecimal>2</noOfDigitsAfterDecimal>
</numberField>
</row>D. Clinical Data (SubForm)
Add subform : Under a form record, you might need to enter multiple medical conditions and a corresponding list of medications and health records. In order to do this, you can create a subform. Click on 'Subform' to add a title to this section.
Add a dropdown field with the list of values - 'Health Conditions' :
To add attributes under this, go to the subform. Select 'Dropdown' to add a list of health conditions.
For multiple condition values, you can also create a text document or a CSV file with all of the values and upload them rather than entering them one by one. Refer to the 'Add Permissible Values' section of the wiki page for more details.
E. Past Medical History
If a value needs to be made as default, add the value in the 'Default Value' field.
F. Record of the date and personnel who filled out the form
...