unselecting item in cfselect
Simple question here...have a cfselect tag bound to a cfquery (see below). I want the tag to appear unselected so that the user is required to select an item. The problem is that no validation ever occures apparently because the 1st item is already selected.
<cfselect
name="select1" query="qryHair" display="description" value="code" queryPosition="Below" required="yes" message="You must select a value here.">
<option value="">select</option>
</cfselect>
So what's the trick?
