Rails, Is there any way in my view use link_to to grab the contents of a specific field and place it
- by Datatec
Basically I am trying to capture the value of the form field before it is saved to the database. Then I intend to use that value in my controller to update a specific field in the database, using @taskforms.update_attribute('notes', $notes)
I need to do this because I know of no other way to update that that does not require the full record to be validated.