I am trying to add a feature to my insoshi installation so each user
can have their own css theme on their profile page. So under the
signup page I added a dropdown box, but rails doesn't have a function
like f.text_field for example that can be used to create drop down
boxes. So I used the following code for this dropdown box instead:
<label for="css_theme">Theme</label>
<select id="person_css_theme" name="person[css_theme]">
<% @themes.each do |theme| %>
<option value="<%= theme.id %>">
<%= theme.name %>
</option>
<% end %>
</select>
But then I'm not sure how to insert the "theme.id" into css_theme
field in the person table.
Any help would be appreciated,
Thank you,
Mikael
--~--~---------~--~----~------------~-------~--~----~
Insoshi developer site: http://dogfood.insoshi.com/
Insoshi documentation: http://docs.insoshi.com/
You received this message because you are subscribed to the Google
Groups "Insoshi" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/insoshi?hl=en
-~----------~----~----~----~------~----~------~--~---