No, for attributes on the upload form, you can elect to use Checkboxes (select many) or Radio buttons (select one) but you can't use a drop down list. You can tell it to use multiple columns though if that will help
Edit the form.xml file.
If you add a tag named ATTRIBUTES it will be applies to all attributes on your form. If you add a tag for ATTRIBUTE:tokenname then it will only apply to that particular attribute (note: tokenname is case sensitive),
Example: to make all attributes on the forms use Radio buttons with 2 columns
<Object>
<Token>[ATTRIBUTES]</Token>
<Settings>
<Setting>
<Name>Select</Name>
<Value>SINGLE</Value>
</Setting>
<Setting>
<Name>RepeatColumns</Name>
<Value>2</Value>
</Setting>
<Setting>
<Name>RepeatDirection</Name>
<Value>Horizontal</Value>
</Setting>
</Settings>
</Object> |
Another example: to use 3 columns of checkboxes for the attribute named 'location'
<Object>
<Token>[ATTRIBUTE:location]</Token>
<Settings>
<Setting>
<Name>Select</Name>
<Value>MULTIPLE</Value>
</Setting>
<Setting>
<Name>RepeatColumns</Name>
<Value>3</Value>
</Setting>
<Setting>
<Name>RepeatDirection</Name>
<Value>Horizontal</Value>
</Setting>
</Settings>
</Object> |