I'm using Ruby on Rails 3 to create a form for the user, where he can save his birthdate. All the actions around the controller and model work just fine. But I'm having trouble with the styling of this form.
For every select in my forms I wrap a div around it, to style it, which normally works just fine. The problem with date_select
is that it generates three select boxes which all get wrapped into one div. As example in Haml the code for the field looks like this:
.select-wrapper
= f.date_select :birthday, :start_year => Time.now.year - 120, :end_year => Time.now.year
The .select_wrapper
creates a div around all three select boxes but I need every select box to have it's own wrapper. Is there any way to solve this issue?
Any help would be appreciated. Thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…