For Adobe ColdFusion application servers Month

Month provides a select box of months. The numeric value of the selected month is submitted.

Examples

The plain preset:

<cf_terrafield
  preset="month"
  name="MyMonth1"
/>

Set the current month as the default:

<cf_terrafield
  name="MyMonth2"
  caption="month (2)"
  preset="month"
  default="#month(now())#"
/>

No comments yet