<?xml version="1.0"?>
<html xmlns="http://www.w3.org/1999/xhtml" 
      xmlns:xf="http://www.w3.org/2002/xforms"
      xmlns:ev="http://www.w3.org/2001/xml-events" 
      xmlns:my="urn:my-example-namespace">
<head>
    <title>xf:item help/hint example and test-case</title>
    <xf:model>
        <xf:instance>
            <my:root>
                <my:color/>
            </my:root>
        </xf:instance>
    </xf:model>
</head>
<body>
<xf:select1 ref="/my:root/my:color">
    <xf:label>Choose a color </xf:label>
    <xf:hint>Colors are non-verbal communication. They create a physical and emotional reaction.</xf:hint>
    <xf:help>Select the color that you like the most</xf:help>
    <xf:choices>
        <xf:label>Cool Colors</xf:label>
        <xf:hint>Cool colors tend to have a calming effect</xf:hint>
        <xf:help>Select one of these, if you wish to choose a cool color</xf:help>
        <xf:item>
            <xf:label>Blue</xf:label>
            <xf:value>#0000ff</xf:value>
            <xf:hint>strong, important, peaceful, intelligent</xf:hint>
            <xf:help>Select this if you like blue</xf:help>            
        </xf:item>
        <xf:item>
            <xf:label>Green</xf:label>
            <xf:value>#00ff00</xf:value>
            <xf:hint>growth, health, environment, harmony</xf:hint>
            <xf:help>Select this if you like green</xf:help>            
        </xf:item>
    </xf:choices>
    <xf:choices>
        <xf:label>Warm Colors</xf:label>
        <xf:hint>Warm colors convey emotions from simple optimism to strong violence</xf:hint>
        <xf:help>Select one of these, if you wish to choose a warm color</xf:help>
        <xf:item>
            <xf:label>Red</xf:label>
            <xf:value>#ff0000</xf:value>
            <xf:hint>love, passion, heat, joy, power</xf:hint>
            <xf:help>Select this if you like red</xf:help>            
        </xf:item>
        <xf:item>
            <xf:label>Yellow</xf:label>
            <xf:value>#ffff00</xf:value>
            <xf:hint>happy, joy, cheerful, remembrance</xf:hint>
            <xf:help>Select this if you like yellow</xf:help>            
        </xf:item>
    </xf:choices>
    <xf:choices>
        <xf:label>Neutral Colors</xf:label>
        <xf:hint>Neutral colors help to put the focus on other colors or serve to tone down colors that might otherwise be overpowering on their own</xf:hint>
        <xf:help>Select one of these, if you wish to choose a neutral color</xf:help>
        <xf:item>
            <xf:label>Black</xf:label>
            <xf:value>#000000</xf:value>
            <xf:hint>conservative, mysterious, sophisticated</xf:hint>
            <xf:help>Select this if you like black</xf:help>            
        </xf:item>
        <xf:item>
            <xf:label>White</xf:label>
            <xf:value>#ffffff</xf:value>
            <xf:hint>purity, innocence, softness</xf:hint>
            <xf:help>Select this if you like white</xf:help>            
        </xf:item>
    </xf:choices>                
</xf:select1>
</body>
</html>