Check box update

I want to create a check box that will update a field in a database
table. How do you link a method in a model to a check box?

Sc Pu wrote:

I want to create a check box that will update a field in a database
table. How do you link a method in a model to a check box?

check_box object, method

:slight_smile:

steve

Sc Pu wrote:

I want to create a check box that will update a field in a database
table. How do you link a method in a model to a check box?

Do you mean updates the record via Ajax when the check box is clicked?
See Click On a Link to Update Database Record. How Do You Do It? - Rails - Ruby-Forum

http://autopendium.com
Stuff about old cars

Scott Pn wrote:

Do you mean updates the record via Ajax when the check box is clicked?
See Click On a Link to Update Database Record. How Do You Do It? - Rails - Ruby-Forum

Also, I like the idea of automatically updating with ajax, is there a
way to do this without UJS?

Yes, you can use the observer_field helper method
(http://api.rubyonrails.org/classes/ActionView/Helpers/PrototypeHelper.html#M000535)

Hope this helps
Chris

Autopendium :: Stuff about old cars
http://autopendium.com

Steve R. wrote:

check_box object, method

I tried that in a form, and it didn’t work, is there any way to force it
to do execute the method.

Chris T. wrote:

Do you mean updates the record via Ajax when the check box is clicked?
See Click On a Link to Update Database Record. How Do You Do It? - Rails - Ruby-Forum

Also, I like the idea of automatically updating with ajax, is there a
way to do this without UJS?