Create a new file, public\input.html
Using Checkboxes
Working With Checkboxes
This Ruby on Rails application lets you read data from checkboxes.
Edit app\controllers\hello_controller.rb
class HelloController < ApplicationController
def there
@data = params[:check1]
end
end
File: app\views\hello\there.rhtml:
Reading data from text fields
<% if @data %>
You clicked yes.
<% else %>
You did not click yes.
<% end %>
Start the WEBrick server: ruby script/server
Navigate to http://localhost:3000/input.html.
readCheckBox.zip( 89 k)