CFSELECT and Helper Text
Ugh... brain fart time...
Awhile back I made a dropdown list using either <CFSELECT...> or maybe it was just a <SELECT...> control. That isn't important tho...
What is important is I put in some text into the drop down list that said something like "Select an Item". As soon as the user clicked on the control the instructional text "Select an Item" disappeared and was replaced with the contents of the dropdown list.
Problem is I can't remember how to add that "helper" type of text to the dropdown control.
I've added this OPTION tag below the CFSELECT but the helper text is now included as part of the selectable drop down items and I don't want that.
<CFSELECT NAME="ContactType" REQUIRED="Yes" QUERY="ConQry" DISPLAY="ConName" VALUE="ConType" TABINDEX="1" SELECTED="#MyContactType#" SIZE="1" QUERYPOSITION="below" style="font-size:11px;background-color:##FFFFCC;" MESSAGE="Please select the method of contacting PERSI">
<OPTION VALUE="0"> --- Select a Method of Contact --- </OPTION>
</CFSELECT>
Any thoughts???
