-
-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'medic:master' into duplicate-prevention
- Loading branch information
Showing
16 changed files
with
2,636 additions
and
145 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
tests/e2e/default/telemetry/forms/select_contact_telemetry.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?xml version="1.0"?> | ||
<h:html xmlns="http://www.w3.org/2002/xforms" xmlns:h="http://www.w3.org/1999/xhtml" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:jr="http://openrosa.org/javarosa" xmlns:orx="http://openrosa.org/xforms"> | ||
<h:head> | ||
<h:title>Select contact by type and without type</h:title> | ||
<model> | ||
<itext> | ||
<translation lang="en"> | ||
<text id="/data/select_contact_by_type:label"> | ||
<value>Select the contact by type</value> | ||
</text> | ||
<text id="/data/select_contact_without_type:label"> | ||
<value>Select the contact without type</value> | ||
</text> | ||
</translation> | ||
</itext> | ||
<instance> | ||
<data id="select_contact_telemetry" prefix="J1!select_contact_telemetry!" delimiter="#" version="2024-10-30 16-00"> | ||
<select_contact_by_type/> | ||
<select_contact_without_type/> | ||
<meta tag="hidden"> | ||
<instanceID/> | ||
</meta> | ||
</data> | ||
</instance> | ||
<bind nodeset="/data/select_contact_by_type" type="db:person"/> | ||
<bind nodeset="/data/select_contactselect_contact_without_type"/> | ||
</model> | ||
</h:head> | ||
<h:body class="pages"> | ||
<group appearance="field-list" ref="/data"> | ||
<input appearance="select-contact" ref="/data/select_contact_by_type"> | ||
<label ref="jr:itext('/data/select_contact_by_type:label')"/> | ||
</input> | ||
<input appearance="select-contact" ref="/data/select_contact_without_type"> | ||
<label ref="jr:itext('/data/select_contact_without_type:label')"/> | ||
</input> | ||
</group> | ||
</h:body> | ||
</h:html> |
Oops, something went wrong.