cfselect required in cf9
http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7afe.html
I read content of the page that I linked to above and I'm gathering that cfselect now has a working required attribute. However I cannot get it to work using a very simple example.
I am running cf9 on my server but can't figure out how to get the following code to show the required message.
<cfform name="switch_this" method="post" action="switch.cfm">
<cfselect name="switch" required="yes" message="Please select an activity">
<option value=""></option>
<option value="Swimming"></option>
<option value="Running"></option>
<option value="Biking"></option>
</cfselect>
</cfform>
What I want to happen is that if the user does not select either Swimming, Running, or Biking, the form will not submit and the message "Please select an activity" will display.
