Re: [Rails] Requesting information from user

2013-09-05 Thread Walter Lee Davis
You would show and hide the element with JavaScript, but create it in Rails. Simple example: <%= form_for @knight do |f| %> <%= f.label :favorite_color, 'What\'s your favorite color?' %> <%= f.collection_select :favorite_color, %w(red green blue ah), :to_s, :titleize

[Rails] Requesting information from user

2013-09-05 Thread Jorge C.
Hi, I need to "popup" a message to the user in order he can choose an option. It is not a YES-NO option but almost the same (has has to choose among two options). It has to be a message with a question and two buttons. Is that possible on Rails? Thanks! Jorge -- Posted via http://www.ruby