Reference for writing HTML for the Html_Form_Entry_Module
Tag Reference
<code>
See <translations>
<encounterDate>
Data entry widget for recording encounter date. Along with encounterLocation and encounterProvider, encounterDate should be present on every HTML form.
Attributes
- default: Specifies default value for encounterDate widget.
- OPTIONAL
- Example: <encounterDate default="today"/>
- Value: "today", "now", or ?????
- Default: None
- showTime: The showTime attribute determines if the encounterDate widget is date-only or date and time.
- OPTIONAL
- Example: <encounterDate showTime="true"/>
- Value: "true" or "false"
- Default: False - Widget is date-only
Example Usage
<encounterLocation>
Data entry widget for recording location of the encounter. Along with encounterDate and encounterProvider, encounterLocation should be present on every HTML form.
Attributes
- default: Sets default value for the widget.
- OPTIONAL
- Example: <encounterLocation default="2"/>
- Value: Location ID or Location Name
- Default: None
- order: Determines which locations appear in the list, and specifies the order in which they appear.
- OPTIONAL
- Example: <encounterLocation order="2,7,4"/>
- Value: Comma separated list of Location IDs or Location Names
- Default: All locations in alphabetical order
Example Usage
<encounterProvider>
Data entry widget for recording provider for the encounter. Along with encounterDate and encounterLocation, encounterProvider should be present on every HTML form.
Attributes
- default: Sets default value for the widget.
- OPTIONAL
- Example: <encounterProvider default="djaz"/>
- Value: Username or UserID
- Default: None
- role: Filters the list of users to only those with the specified role
- OPTIONAL
- Example: <encounterProvider role="Provider"/>
- Value: Any valid role
- Default: None - List includes all users.
Example Usage
<enrollInProgram>
Enrolls a patient in a program when the form is submitted. This only happens when the form is first entered--nothing happens when the form is edited or deleted.
Specifics about this enrollment behavior:
- If the patient is already in the program on that date, nothing changes
- If the patient is registered in the program after that date, then the patient's enrollment date will be moved back to the date of this encounter
- Otherwise, the patient is enrolled as requested
Attributes
- programID: ID of the program in which the patient is to be enrolled.
- REQUIRED
- Example: <enrollInProgram programId="1"/>
- Value: Any valid program ID.
- Default: None.
<excludeIf>
A tag that optionally exclude all its content based on evaluating a logic token or a velocity expression. This tag has to only contain either a logic test or a velocity test.
Attributes
- logicTest A logic expression represents a logic test.
- OPTIONAL
- Example: <excludeIf logicTest="GENDER = F"/> - A logic test to see if the patient's gender is female
- velocityTest A velocity expression represents a velocity test.
- OPTIONAL
- Example: <excludeIf velocityTest=""$patient.gender" == "F" "/> - A velocity test to see if the patient's gender is female.
Example Usage
<htmlform>
Top-level tag that defines a form. A form must be wrapped in an htmlform tag.
<includeIf>
See <excludeIf>
<lookup>
Allows you to evaluation of velocity expressions.
The variables you have access to in the velocity context are:
- patient: the patient object you're entering the form for
- locale: the authenticated user's locale
- patientIdentifiers: Map<String, List<String>> of identifierType.name -> all identifiers of that type
Attributes
- complexexpression
- OPTIONAL
- Example: <lookup complexExpression="#foreach( $addr in $patient.addresses ) $!addr.cityVillage <br/> #end"/>
- Value: Valid complex velocity expression
- Default: None
- class
- OPTIONAL
- Example: <lookup class="value" ... />
- Value: Valid velocity class
- Default: None
- expression
- OPTIONAL
- Example: <lookup expression="patient.personName"/>
- Value: Valid velocity expression
- Default: None
Example Usage
<macros>
Define macros at the top of the file (e.g. for things like colors).
Example Usage
<obs>
Generates an obs data entry widget. Depending on the datatype of the concept you specify, you get different obs.value widgets, and you use different attributes to control them.
Data Types
Numeric
By default, displays a small text box that auto-checks that entries are between absoluteMinimum and absoluteMaximum for the concept, and checks on precise also. You can also specify a constrained list of answers, as radio button or checkboxes. (Since 1.6.1) Example:
You can also specify answerCodes instead of answerLabels to reference answer labels by codes in messages.properties or in the translation mappings in the form itself.
Boolean
Various widget styles can be used to input Boolean values:
Text
By default, displays a normal text input box.
Date
Renders a date picker widget. Note that dates are not allowed to be in the future, unless attribute allowFutureDates="true".
Coded
Renders a drop-down with all possible coded answered. Set style="radio" to display a radio set of options in lieu of a drop-down. Set style = "autocomplete" to display a autocomplete widget. Note autocomplete has to work with either an answerClasses attribute or an answerConceptId attribute.
You can also specify answerCode instead of answerLabel to reference an answer label by a code in messages.properties or in the translation mappings in the form itself.
Attributes
- allowFutureDates: When set to true allows future dates.
- OPTIONAL
- Example: <obs conceptId="5096" allowFutureDates="true" />
- Value: "true" or "false"
- Default: False - Only past dates are allowed by default.
- answerCodes: Allows you to reference labels by a messages.properties codes or a codes in the translation mappings defined in the form.
- OPTIONAL
- Example: ???
- Value ??
- Default: ?????
- answerClasses: Renders as a dropdown all Concepts with specified ConceptClass, ordered by Concept Name
- OPTIONAL
- Example: <obs conceptId="1296" answerClasses="Drug"/>
- Value: Valid ConceptClass
- Default: None
- answerConceptID: Concept reference corresponding to the coded answer for the question. Frequently used with checkboxes.
- OPTIONAL
- Examples:
- <obs conceptId="3509" answerConceptId="2070" answerLabel="l'hôpital" style="checkbox" />
- <obs conceptId="3509" answerConceptId="XYZ:HT" answerLabel="l'hôpital" style="checkbox" />
- <obs conceptId="3509" answerConceptId="0cbe2ed3-cd5f-4f46-9459-26127c9265ab" answerLabel="l'hôpital" style="checkbox" />
- Value: A valid Concept Integer ID, Concept Mapping, or Concept uuid.
- Default: None
- answerConceptIds: Concept references corresponding to the coded answers for the question. Used with radio buttons and dropdowns.
- OPTIONAL
- Examples:
- <obs conceptId="1319" labelText="Toiture/Roofing: " answerConceptIds="1320,1321,1316" answerLabels="tole,tache,beton"/>
- <obs conceptId="1319" labelText="Toiture/Roofing: " answerConceptIds="XYZ:HT,ABC:QQ,QWE:TR" answerLabels="tole,tache,beton"/>
- <obs conceptId="1319" labelText="Toiture/Roofing: " answerConceptIds="5ecb88f3-cd5f-4f46-9459-26127c9265ab,74e3ded1-cd4f-4f4b-9459-26127c9265ab,0cbe2ed3-cd5f-4f46-9459-26127c9265ab" answerLabels="tole,tache,beton"/>
- <obs conceptId="1319" labelText="Toiture/Roofing: " answerConceptIds="1320,ABC:QQ,0cbe2ed3-cd5f-4f46-9459-26127c9265ab" answerLabels="tole,tache,beton"/>
- Value: Quoted, comma separated list of valid Concept Integer IDs, Concept Mappings, or Concept uuid's.
- Default: None
- answerLabel: Sets the text to display after the object. Used with checkboxes.
- OPTIONAL
- Example: <obs conceptId="3509" answerConceptId="2070" answerLabel="l'hôpital" style="checkbox" />
- Value: Any quoted string
- Default: None
- answerLabels: Sets the text to display after the objects. Used with radio buttons or dropdowns.
- OPTIONAL
- Example: <obs conceptId="3201" labelText="" answerConceptIds="1065,1066" style="radio" answerLabels="oui,non" />
- Value: Comma separated list.
- Default: None
- answers: Values to be stored as the answer for a radio button or dropdown. NOT used when answers are concepts - see answerConceptIds in that case
- OPTIONAL
- Example: <obs conceptId="123" labelText="Education" answers="0,6,8" answerLabels="None,1-6,7-8" style="radio"/>
- Value: Comma-separated list
- Default: None
- cols: Number of columns in the textarea (implies style="textarea").
- OPTIONAL
- Example: <obs conceptId="3221" rows="7" cols="60" />
- Value: Positive integer.
- Default: None
- conceptID: Integer ID, Concept Mapping, or Concept uuid of the concept to which the obs widget is linked. The datatype of this concept drives the behavior of the widget.
- REQUIRED
- Examples:<obs conceptId="6135" /><obs conceptId="XYZ:HT" /><obs conceptId="0cbe2ed3-cd5f-4f46-9459-26127c9265ab" />
- Value: Valid Concept Integer ID, Concept Mapping, or Concept uuid.
- Default: None
- dateLabel: Text to display after the obs.value widget and before the obs.datetime widget. Specifying this implies showDate="true".
- OPTIONAL
- Example: <obs conceptId="5497" labelText="Most recent CD4:" dateLabel="Date of test:"/>
- Value: Any quoted string
- Default: None
- labelCode: Allows you to reference a label by a messages.properties code or a code in the translation mappings defined in the form.
- OPTIONAL
- Example: <obs conceptId="1234" labelCode="night_sweats"/>
- Value: If referencing a translation mapping, the value for the labelCode attribute must be a valid name as defined within the <code> tag.
- Default: None
- labelNameTag: "default" will delegate to Concept.getBestName(Context.getLocale()). Currently that's the only legal tag.
- OPTIONAL
- Example: ?????
- Value: "default"
- Default: None
- labelText: Sets the label that goes before the widget.
- OPTIONAL
- Example: <obs conceptId="3355" labelText="cause de décès:" />
- Value: Any quoted string
- Default: None
- noLabel: Defines the label for the "no" option for all styles with a "no" parameter. Commonly used to change label from "No" to "non"
- OPTIONAL
- Example: <obs conceptId="6689" style="yes_no" noLabel="non" yesLabel="oui" />
- Value: Any quoted string.
- Default: "No"
- required: Sets this field as a required field
- OPTIONAL
- Example: <obs conceptId="3453" required="true" />
- Value: True or false
- Default: False
- rows: Number of rows in the textarea (implies style="textarea")
- OPTIONAL
- Example: <obs conceptId="3221" rows="7" cols="60" />
- Value: Positive Integer
- Default: None
- showDate: Sets whether or not to show a date widget to set the obs.datetime for this obs
- OPTIONAL
- Example: <obs conceptId="3232" showDate="true" />
- Value: True or false
- Default: False
- size: Specifies the size of a text field.
- OPTIONAL
- Example: <obs conceptId="2216" labelText="Résultats: " size="80" />
- Value: Positive integer
- Default:?
- style: Specifies the type of input element (radio, checkbox, dropdown, yes/no, etc.) that displays on the form.
- OPTIONAL
- Example: <obs conceptId="6689" style="yes_no" noLabel="non" yesLabel="oui" />
- Value: "radio", "checkbox", "dropdown", "yes_no", "no_yes", "yes_no_dropdown", "no_yes_dropdown", "textarea", "autocomplete"
- Default: Driven by datatype of associated concept.
- value: When set to "false", a checked checkbox signifies a value of false for the concept. It inverts the normal relationship where a checked checkbox signifies "true".
- OPTIONAL
- Example: <obs conceptId="2146" style="checkbox" value="false" />
- Value: True or false
- Default: True
- yesLabel: Defines the label for the "yes" option for all styles with a "yes" parameter. Commonly used to change label from "Yes" to "Oui"
- OPTIONAL
- Example: <obs conceptId="6689" style="yes_no" noLabel="non" yesLabel="oui" />
- Value: Any quoted string.
- Default: "Yes"
Related Tags
<obsgroup>
Used to create an obs group. You are required to specify a groupingConceptId. Nested obs groups are not currently supported (but should be shortly. Check release notes on main HTML Form Entry Module wiki page.)
Attributes
- groupingConceptId: ID of the associated concept
- REQUIRED
- Examples:
- <obsgroup groupingConceptId="2214">
- <obsgroup groupingConceptId="XYZ:HT">
- <obsgroup groupingConceptId="0cbe2ed3-cd5f-4f46-9459-26127c9265ab">
- Value: Any valid concept integer ID, concept mapping pair, or concept uuid.
- Default: None
Related Tags
Example Usage
<render>
See <repeat>
<repeat>
Repeatedly renders code that is contained within template tags. Facilitates future code maintenance. Repeats can be nested inside of other tags. A repeat can contain only 2 top level tags: template and render.
Related Tags
<template>
- The code contained in the <template> tags is repeated for each <render> tag.
<render>
- Used within a repeat tag to render code. Within the render tag you can also specify attributes that can be used as keys during substitution.
Example Usage
<section>
The <section> tag lets you break your form, and corresponding form schema, into sections.
Attributes
- headerCode: Allows you specify the header label using a code that references message.properties or the translation mappings in the form itself.
- OPTIONAL
- Example: ???
- Value: ????
- Default: None.
- headerLabel: The label to use in the section header.
- OPTIONAL
- Example: <section headerLabel="1. Information démographique">
- Value: Any quoted string
- Default: None.
- headerStyle: Allows you to override the default style for the section header.
- OPTIONAL
- Value: Valid CSS style attributes
- Default: None
- sectionStyle: Allows you to override the default style for the section.
- OPTIONAL
- Value: Valid CSS style attributes
- Default: None
<submit>
You need to put a submit tag at the bottom of your form, or else your users will be very disappointed in you.
Example
<template>
See <repeat>
<translations>
Defines translation mappings at the top of the file which can be accessed by specialized coded attributes in other tags.
Attributes
- defaultLocale: Allows you to specify the default variant value.
- OPTIONAL
- Example: <translations defaultLocale="en">
- Value: Any quoted string.
- Default: None.
Related Tags
<code>
Used to define a code to assign variant values to.
Attributes
- name: Name of the variant
- REQUIRED
- Example: <code name="night_sweats">
- Value: Any quoted string.
- Default: None
<variant>
Used to identify the value for a code as determined by the locale.
Attributes
- locale: ????
- REQUIRED
- Example: <variant locale="en" value="night sweats"/>
- Value: A valid two letter locale value. E.g. "ar", "en", "es", "fr"
- Default: None
- value: The value to be assigned to the code.
- REQUIRED
- Example: <variant locale="en" value="night sweats"/>
- Value: Any quoted string.
- Default: None
Example Usage
<variant>
See <translations>
Other Examples & Tips
Linking to Pages
To make it seem like your html form has multiple pages, it would be best to put links to allow the user to jump down to the next page: