Go Back   CodingForums.com > :: Server side development > Ruby & Ruby On Rails

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 01-29-2012, 06:58 AM   PM User | #1
sbzero546
New to the CF scene

 
Join Date: Oct 2011
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
sbzero546 is an unknown quantity at this point
Radio button choice to show up on main page

I am entering information about a book and trying to get my language choice to go on my main page. The problem is with the radio buttons under language.
Code:
  <%= form_for(@book) do |f| %>
  <% if @book.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@book.errors.count, "error") %> prohibited this book from being saved:</h2>

      <ul>
      <% @book.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <%= f.label :title %><br />
    <%= f.text_field :title %>
  </div>
  <div class="field">
    <%= f.label :author %><br />
    <%= f.text_field :author %>
  </div>
  <div class="field">
    <%= f.label :publication_date %><br />
    <%= f.date_select :publication_date,
    		      :start_date => 1900,
    		      :end_date => (Time.now.year+2) %>
  </div>
  <div class="field">
    <%= f.label :length %><br />
    <%= f.number_field :length %>
  </div>
  <div class="field">
    <%= f.label :language %><br />
    <%= radio_button_tag :'language', 'english' %> English
    <%= radio_button_tag :'language', 'french' %> French
    <%= radio_button_tag :'language', 'spanish' %> Spanish
    <%= radio_button_tag :'language', 'german' %> German
  </div>
  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>
sbzero546 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 09:36 AM.


Advertisement
Log in to turn off these ads.