Wiki Spaces
Documentation
Projects
Resources
Get Help from Others
Q&A: Ask OpenMRS
Discussion: OpenMRS Talk
Real-Time: IRC Chat | Slack
Shows properties for the selected item (page, question, or question option) in the Forms Pane.
This is the display text of the item.
The text which explains more than what the text property does. For browser data entry, this will be displayed as a tooltip for the question widget.
The type of data to be collected for the selected question.
The supported data types are:
Use this for free text entry.
Numbers without decimal points.
Numbers with decimal points.
Dates.
Time.
Date and time.
True and False or Yes and No.
A list of items where only one item can be selected at a time.
A list of items where more than one item can be selected at the same time.
One or more questions which can be repeated an arbitrary number of times. An example of this are problems lists.
Picture taking or file upload.
Video capture or file upload.
Sound capture or file upload.
A list of items to select one at a time, but where the list varies according to the selected value in another question. An example of this could be country selection list which changes according to the selected continent.
GPS cordinates. eg Latidute, Longitude and Altitude.
The internal identifier of the item. This is disabled and hence you will not edit it.
Determines if a question will be shown. For instance the database patientId, though part of the form, may be hidden from the user because it is the application which supplies a value for the current patient.
Determines if the question answer can be edited. When using Mozilla Firefox, the value for a disabled widget is not displayed. If you want to see the value but without changing it, and you are using Firefox, then you may leave the question enabled and tick the locked property.
Determines if the question answer can be edited. This disables question answer editing but also displays the value for Firefox.
Determines if an answer should be supplied for the question before the form can be submitted for saving.
The answer taken when the one filling the form has not supplied any. For Single Select/Multiple Select fields, the "Default Value" should be the "Binding" value of the default concept. Here is one example of the "Binding" for an OpenMRS system which assumes the use of the MVP-CIEL concept dictionary: For a Single Select field which has the options "NORMAL" and "ABNORMAL", where "NORMAL" should be the default value, set the field's "Default Value" to "1115^NORMAL^99DCT".
This is only for those fields whose values are a result of some computation. For instance if we had three fields: Weight1, Weight2, Weight3.
Where Weight3 = Weight2 - Weight1.
Then the calculation property would be only for the Weight3 field and would be: /form/obs/weight2/value - /form/obs/weight1/value
You can use the "add field" link on the right hand side which lets you select a form field and it inserts the xpath expression for each field.
Another example to multiple or divide is the following (/form/obs/peso_kg/value * 10000) / (/form/obs/talla/value * /form/obs/talla/value)
Let's say you want to set Weight3 to 10 only when Weight2==10, else Weight3=0;
For conditionals such as this, a form would be (/form/obs/weight2/value)==10?10:0
The "short if" works like this: condition?value_true:value_false.
Another example is all of this in the calculate property (where weight 2-4 are numeric concepts)
(function () { if(/form/obs/weight2/value == 6101 || (/form/obs/weight3/value == 6101 && /form/obs/weight4/value == 6101) ) { return 4; } else if (/form/obs/weight2/value == 6102 || /form/obs/weight3/value == 6102) { return 2; } } ) ()
If the field you are comparing with is a single or multiple select (for example if the question is a coded concept), then change 6101 to '6101^NAME^99DCT'
For max, set the calculation property to something like: Math.max(/new_form1/question1/value, /new_form1/question2/value)
For min, set the calculation property to something like: Math.min(/new_form1/question1/value, /new_form1/question2/value)
For sum, set the calculation property to something like: /new_form1/question1/value + /new_form1/question2/value
NOTES:
A combination of any question answers and text which can be used to describe data collected in a form. This is mostly used for mobile devices which can have a list of data collected for the same form and use the property to enable the user to differentiate between the data items without having to first open and check each one by one. This is a property of only the form item and therefore you can give it a value only when the form is selected under the Forms Pane. If you do not know the syntax used, you can click the "Add Field" link and type the name of the question you would like to be part of the form description template.
An example of a description template for the basic form is "${/form/patient/patient.family_name}$ in ${/form/encounter/encounter.location_id}$". If for instance the answer for the family_name question is "Daniel" and the one for location is "Masaka Hospital", then at runtime the form description template will be "Daniel in Masaka Hospital"
This enables you create rules governing which questions are to be valid basing on answers from some other questions. An example would be a pregnancy question which is not valid when gender is male. XForms Module Skip Logic
This is used to create rules that determine the range of values valid as answers for a question. An example could be setting weight to be between 0 and 250, Last name should not be more than 20 characters, Encounter date should not be after today, and more. XForms Module Validation Logic
This is used to select the list of items which are valid for a Single Select Dynamic question type basing on a particular selected answer in another question. XForms Module Dynamic Lists
1 Comment
Daniel Kayiwa
This is just another example of a calculation property computing values from four fields: