I have a Formtastic form like:
<%= semantic_form_for @event do |form| %>
<div class="field">
<%= form.label :starts_at %><br />
<%= form.datetime_select :starts_at, :discard_year => true, :minute_step => 30 %>
</div>
<% end %>
In my Event.rb, I have:
validates_inclusion_of :starts_at, :in => Time.now..(Time.now + 1.year),
:message => "appointment must be between now and one year from now"
It seems that the validation works (prevent instances with invalid date from being saved), but the error message does not show in the form. I have other fields with validations and they all show message that I specified in Event.rb
I wonder what I did wrong, or there's something special about date field.