Creating Drop Down Menu Not Working
Hi everyone !
I'm trying to create a dropdown menu in an input forms and I don't know why this doesn't work, knowing that I've created an enumeration in the DataSchema,
here's the code for the DataSchema :
<enumeration basetype="short" default="sh" name="scriptLanguage1">
<value label="Shell script" name="sh" value="0"/>
<value label="DOS Batch" name="batch" value="1"/>
<value label="Visual Basic script" name="vbs" value="2"/>
<value label="Perl" name="perl" value="3"/>
<value label="Python" name="python" value="4"/>
<value label="Ruby" name="ruby" value="5"/>
<value label="Other..." name="other" value="6"/>
</enumeration>
And this is the attribute linked to this enumeration :
<attribute desc="Language" enum="scriptLanguage1" label="Language" name="sscript" type="short"/>
This is the attribute i put in the Input Forms :
<input label="The Scripts languages" xpath="sscript"/>I also tried to change xpath="sscript" to xpath="@sscript" but still not working ,
Thank you in advance for your help.
