<?xml version="1.0"?>
<h:html xmlns="http://www.w3.org/2002/xforms"
    xmlns:ev="http://www.w3.org/2001/xml-events"
    xmlns:h="http://www.w3.org/1999/xhtml"
    xmlns:jr="http://openrosa.org/javarosa"
    xmlns:oc="http://openclinica.org/xforms"
    xmlns:odkkkkkk="http://www.opendatakit.org/xforms"
    xmlns:orxxxx="http://openrosa.org/xforms"
    xmlns:xsdddd="http://www.w3.org/2001/XMLSchema">
    <h:head>
        <h:title>appearances</h:title>
        <model>
            <instance>
                <data id="data">
                    <one>
                        <a/>
                        <b/>
                        <c/>
                        <d/>
                        <e/>
                        <f/>
                        <g/>
                        <h/>
                        <i/>
                        <k/>
                        <l/>
                    </one>
                    <two/>
                    <meta>
                        <instanceID/>
                    </meta>
                </data>
            </instance>
            <bind nodeset="/data/one/a" type="string"/>
            <bind nodeset="/data/one/b" type="string"/>
            <bind nodeset="/data/one/c" type="string"/>
            <bind nodeset="/data/one/d" type="string"/>
            <bind nodeset="/data/one/e" type="string"/>
            <bind nodeset="/data/one/f" type="string"/>
            <bind nodeset="/data/one/g" type="int"/>
            <bind nodeset="/data/one/h" type="xsdddd:string"/>
            <bind nodeset="/data/one/i" type="string"/>
            <bind nodeset="/data/meta/instanceID" type="string"/>
        </model>
    </h:head>
    <h:body>
        <group ref="/data/one" apperance="field-list">            <!-- field-list is correct -->
            <label>Group with clinicaldata issues</label>
            <input ref="/data/one/a">
                <label>Valid because it has a form control</label>
            </input>
            <input ref="/data/one/b" appearance="minimal compact-2">
                <label>label b</label>
            </input>
            <input ref="/data/one/c" appearance="maximal">
                <label>label c</label>
            </input>
            <select1 ref="/data/one/d" appearance="minimal hide-input search">                <!-- minimal is correct -->
                <label>label d</label>
                <item>
                    <label>Alaska</label>
                    <value>AK</value>
                </item>
            </select1>
            <range ref="/data/one/e" start="0" end="10" step="1" appearance="horizontal compact">                <!-- all good, except compact-->
                <label>label e</label>
            </range>
            <select1 ref="/data/one/f" appearance="compact-19">
                <label>label f</label>
                <item>
                    <label>Alaska</label>
                    <value>AK</value>
                </item>
            </select1>

            <input ref="/data/one/g" appearance="numbers no-ticks">
                <label>label g</label>
            </input>
            <input ref="/data/one/h" appearance="numbers maps signature">                <!-- numbers is correct -->
                <label>label h</label>
            </input>

            <odkkkkkk:rank ref="/data/one/i" appearance="pulldown">
                <label>label i</label>
                <item>
                    <label>Alaska</label>
                    <value>AK</value>
                </item>
            </odkkkkkk:rank>
            <select1 ref="/data/one/k" appearance="horizontal-compact">
                <label>label k</label>
                <item>
                    <label>Alaska</label>
                    <value>AK</value>
                </item>
            </select1>
            <select1 ref="/data/one/l" appearance="search('external-csv-search-produce', 'contains', 'name',  /data/produce_search )">
                <label>label k</label>
                <item>
                    <label>label</label>
                    <value>name</value>
                </item>
            </select1>
        </group>
        <input ref="/data/two" appearance="field-list">
            <label>label</label>
        </input>
    </h:body>
</h:html>
