Is there a way to specify CSS class on time_zone select helper. I have the code like -

f.time_zone_select :time_zone, ActiveSupport::TimeZone.us_zones

link|improve this question

31% accept rate
possible duplicate of Applying CSS class on time_zone_select – Mike Samuel Nov 9 '11 at 12:32
feedback

1 Answer

up vote 0 down vote accepted
time_zone_select(:time_zone, ActiveSupport::TimeZone.us_zones, {}, {:class => 'css-class-name'}) 

http://api.rubyonrails.org/classes/ActionView/Helpers/FormBuilder.html#method-i-time_zone_select

link|improve this answer
thanks that worked like charm and got to learn a new thing about sorting out problem. – Sam Wilder Nov 9 '11 at 4:35
feedback

Your Answer

 
or
required, but never shown

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