currently i am using this in my view, which makes it pretty hard
coded...can u suggest something else in place of it(which dynamically
fetches the checkbox names from a database)
Also, I want to use two databases(one for fetching the checkbox names,
and the other is for my application). Do I need to include some extra
code for it?
<html>
<head>
<title>Subscribe</title>
</head>
<body>
<h2>Subscribe</h2>
<% form_for :user do |form| %>
<fieldset>
<legend>Enter Your Details</legend>
<label for="%parameter1">Parameter1:</label>
<%= form.check_box :parameter1 %>
</br>
<label for="%parameter2">Parameter2:</label>
<%= form.check_box :parameter2 %>
</br>
<label for="%parameter3">Parameter3:</label>
<%= form.check_box :parameter3 %>
</br>
<%= submit_tag "Subscribe!", :class => "submit" %>
</fieldset>
<% end %>
</body>
</html>
On Dec 10, 6:13 pm, Priya Buvan <[EMAIL PROTECTED]>
wrote:
> <%= check_box :modelname, :attribute, options, on_value, off_value %>
>
> Example:
>
> check_box "post", "validated" # post.validated? returns 1 or 0
> <input type="checkbox" id="post_validate" name="post[validated]"
> value="1" checked="checked" />
> <input name="post[validated]" type="hidden" value="0" />
>
> check_box "puppy", "gooddog", {}, "yes", "no"
> <input type="checkbox" id="puppy_gooddog" name="puppy[gooddog]"
> value="yes" />
> <input name="puppy[gooddog]" type="hidden" value="no" />
>
> Just use it..
> If you can't understand, get back again
>
> --
> Posted viahttp://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" 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/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---