Formtastic currently automatically creates a range of 1..59 for datetime inputs.

But what if I wanted the datetime minute options to be 0, 15, 30, 45?

Is there a way I can set the collection for a datetime in Formastic?

Thanks in advance

link|improve this question
feedback

2 Answers

You can try to use :minute_step => 15 option, for example:

<%= form.input :created_at, :minute_step => 15 %>

Look at select_minute Rails method docs and time_select.

Looks like Formtastic uses Rails select_* methods.

link|improve this answer
feedback

This may be helpful

https://github.com/tamoyal/simple_time_select

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.