How I can add my own field types to formtastic ?
For exemple, I need to have a custom datetime input, and I want something like this:
<%= f.input :start_date , :as => :my_date %>
This obviously doesn't work because formtastic doesn't know the :my_date (only :boolean, :string, :datetime and so on...)
But how can I add additional input types ?