Tagged Questions
The time-select tag has no wiki summary.
4
votes
4answers
1k views
Time select form helper with 12 hour format for Rails 3?
Is there a user-friendly time_select for Rails 3? The default time_select form helper gives you hours[00-23], minutes[00-59] and optionally seconds[00-59]. A dropdown list of hours 0-23 is pretty ...
4
votes
1answer
595 views
time_select with 12 hour time and Time Zone in Ruby on Rails
I have the need to capture a time and time zone from users of a rails 2.3.8 app, but have been unable to think of a clean solution to create and parse the selections.
Ideally I would have a drop-down ...
2
votes
1answer
495 views
Remove “:” from the ruby on rails time_select helper output?
I want to remove the ":" from the output of the rails time_select helper. The helper seems to output this automatically when the minutes select box is built.
Any ideas?
Thanks!
1
vote
2answers
132 views
Programatically accessing HTML attributes with Javascript
I'm using a custom TimeSelector, which I place on the page in HTML as follows:
<MKB:TimeSelector DisplaySeconds="false" ID="endTimeSelector" runat="server" Visible="True" Date="5:30 PM" />
...
0
votes
3answers
640 views
How do I set a time in a time_select view helper?
I have a time_select in which I am trying to set a time value as follows;
<%= f.time_select :start_time, :value => (@invoice.start_time ? @invoice.start_time : Time.now) %>
This always ...