The update-attributes tag has no wiki summary.
0
votes
0answers
26 views
Is there a way to update attributes for multiple objects with nested form?
I'm trying to update multiple objects using nested form.
The idea is simple:
I collect object ids with checkboxes.
Atfer form submit the existing records with specified "work_id" must be updated.
...
0
votes
0answers
21 views
rspec + factory_girl + mongoid model: update spec instance.should_receive(:update_attributes).with(hash).and_return(false) failing
From Gemfile:
gem "rails", "= 3.2.12"
group :test do
gem "database_cleaner", "~> 0.7.2"
gem "factory_girl_rails", "~> 4.1.0", require: false
gem "ffaker", "~> ...
3
votes
1answer
104 views
Rails - How to manage nested attributes without using accepts_nested_attributes_for?
My problem is I've run into limitations of accepts_nested_attributes_for, so I need to figure out how to replicate that functionality on my own in order to have more flexibility. (See below for ...
0
votes
1answer
216 views
Rspec any_instance should_receive should have received the following messages but didn't [closed]
I'm having an issue with a scaffold test for rspec where any_instance.should_receive is throwing an error: Failure/Error: Unable to find matching line from backtrace
Exactly one instance should ...
0
votes
1answer
81 views
Rails update_attributes not updating record
I have the following code in my "entries_controller.rb"
def update
@entry = Entry.find(params[:id])
puts "received HTTP request to update old entry:#{@entry.inspect} with"
puts "new ...
0
votes
0answers
69 views
rspec to test update_attribute for nested object
I recently worked on a project which use "nested_form_for" to create an edit form. Inside this form, we use "link_to_add" to allow user to add more nested object.
When I tested this method in ...
0
votes
3answers
60 views
Create then Update - Rails
I have a set of parameters below that are submitted through a form
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pyMkh1eJ7WxYC978XKjdsyGOeGDvi6RTIOSGb9KMqkc=", ...
0
votes
0answers
116 views
rails how to merge user id in nested attributes while updating with parent
I'm using rails 3.0.9
I've models with has_many :through association, where user can create new child records while creating the new parent record and while updating the parent record, user can ...
0
votes
1answer
126 views
update_attributes does not update nested_attributes in some cases
I am writing a little CMS application with rails 3.2.8. There is a model for paragraphs (basically holding the title, body and date of e.g. a news article) and for pages (consisting of many ...
1
vote
4answers
97 views
update_attributes isn't saving to the database
The correct custom params are being displayed in my debug function after the form is submitted but the default params are displayed when I enter console.
Controller
def update
...
1
vote
1answer
26 views
RoR, place value from select_tag in params hash
I am confused about the accepted way to update an association. Let's assume there are 2 models, Worker and Factory. When editing a Worker, the user is presented with a select_tag that contains a list ...
2
votes
1answer
125 views
update attributes on session timeout rails
I'm trying to make an online user list by setting "1" to a db field when a user logs in, and "0", when he logs out. Trouble is - if a user just leaves the site, the "1" still stays in the db, so what ...
0
votes
1answer
33 views
How can I update mulitple records at once in Ruby on Rails?
I am developing a Ruby on Rails app. In my controller I need to update the table attributes multiple times. I've put this logic in the controller.
def index
if request.post?
@user_new = ...
0
votes
1answer
49 views
Need to update attributes to database multiple times in ruby on rails in controller
For a reason i need to run update the database table many times . I wrote the logic in a while loop. So that , untill the array length is reached , it updates different values of attributes to ...
2
votes
1answer
119 views
update_attributes clearing date fields
I'm taking in a date as a string in my form, and storing it as an actual date field in the database. When calling update_attributes on it, it seems Rails is clearing the value at some point before I ...
0
votes
1answer
77 views
How to make text fields for nested_attributes in rails for selected records?
I have a three models Report,Question,Answer
Answer
belong_to :question
Question
belong_to :reports
has_many :answers, :dependent => :destroy
accepts_nested_attributes_for :answers, ...
0
votes
0answers
54 views
Is there a way to use update_attributes(params[:photo]) where params contains the hash for items that are connected to an active record association?
Is there a way to use update_attributes(params[:photo]) where params contains the hash for items that are connected to an active record association?
For example,
I have a has_and_belongs_to_many ...
0
votes
1answer
102 views
SQL UPDATE is not called in single Table inheritance if :type field is in form
I have a few models setup using STI
Person < ActiveRecod.....
Man
Woman
I've specified a type field and creating a new record works fine. The sub type (Man or Woman) is succesfully saved ...
1
vote
2answers
608 views
How to update/rename a carrierwave uploaded file?
I cant figure out how to update/rename a file uploaded/managed with Carrierwave-mongoid in rails 3.2.6. I want to rename the file in the db as well as on the filesystem.
Something like this maybe...
...
0
votes
2answers
238 views
Rails 2. Calling virtual attribute's setter by update_attributes
I have one extra attribute in my form (:pagesize) which is not in database.
There is also a setter for it:
def pagesize= pagesize
self.preferences["pagesize"] = pagesize
end
I want ...
1
vote
0answers
128 views
Rails 3, how to update habtm relation with single check_box_tag or Confirm-/Refuse-Buttons
I have a habtm model like:
class Recurrence < ActiveRecord::Base
has_many :participations, :include => :user
has_many :users, :through => :participations
accepts_nested_attributes_for ...
0
votes
3answers
247 views
Update_all or update_attribute doesn't update the column
I have a status report a user can send by email and I want to update a column :sent_mail to true, after the deliver action is completed.
def send_status
date = Date.today
reports = ...
0
votes
1answer
372 views
Rails `update_attributes` Undefined method `first` for nil:NilClass
I'm trying to use update_attributes on a record, but it fails and I can't figure out why, I must be missing something obvious as I've used that method plenty of times.
I'm trying to seed data for a ...
1
vote
0answers
157 views
update_attributes() not working for nested attributes and paperclip?
My model describes paragraphs and images, where each paragraph has_many images. For the image handling, I use paperclip. For mass assignment, I use the images as nested_attributes of a paragraph. The ...
0
votes
0answers
56 views
Revert Changed Attributes of Paperclip if updated_attributes fails
I have a page to upload images using paperclip. But if the one of the validations fails on the update_attributes, I want to keep my old file name, to show the user what he had, and tell him what ...
1
vote
1answer
157 views
password_field_tag inside form_for block ( ruby on rails )
My question refers to setting up the view and the controller for updating a user's "profile" by confirming the password from the user before updating the attributes. As you've all probably seen a ...
1
vote
4answers
57 views
Update Post attribute when new Rating is created
I have a Post model which has many ratings and I would like to store the average ratings figure for each post in the post ratings db column. I have a counter cache on the post model which counts the ...
0
votes
1answer
106 views
before_create still saves
Before everything i would like to thank you for your help
I have a model like this:
attr_protected nil
belongs_to :product
belongs_to :user
before_create :add_ammount
def ...
0
votes
1answer
238 views
Rails - Update_attributes was working now getting undefined method error
This was working, but now i'm getting the below error when calling update_attributes :
NoMethodError in SongsController#update
undefined method `name' for nil:NilClass
Rails.root: C:/Sites/music3
...
0
votes
2answers
281 views
update_attributes rails differentiate between create and update
I have a nested form (very similar to the one shown in RailsCasts) that I use an update_attributes, which updates the parent object as well as updating and creating new child objects. I want to be ...
0
votes
1answer
219 views
Nested model, update_attributes not working
I am having a hard time with what I thought would be an textbook update example. Searched SO but couldn't find the answer. In short, when I click submit the user_id in the profile model gets wiped ...
1
vote
2answers
332 views
Rspec Rails: testing controller method 'create' with a multi-model form
I am building a Ruby on Rails app with the usual assortment of models, views and controllers.
The 'create' action in one of my controllers is supposed to create an instance of two different models. ...
2
votes
1answer
234 views
Finding which fields have been updated after calling update_attributes?
I'd like to know which fields have been updated after an update_attributes statement. I'm filtering the updatable parameters and deleting those that I don't want updated from the params[:model]. Now, ...
0
votes
1answer
83 views
Difference between put and update_attributes in this spec
Dumb question time: In the following request spec, I try to make sure that the first user in my db can't be edited (by anyone besides the first user).
# user is not logged in during these tests
# ...
1
vote
2answers
156 views
unknown attribute X, but X is not in argument of update_attributes in rails3
I am trying to set object's field in the form with accept_nested_attributes. However in the controller when I do :
@device.update_attributes(params[:device])
I get :
...
0
votes
0answers
175 views
nested form fields not saved in update attributes
i am a rails newbie. i am working on a nested form and it is not saving the data (both parent and nested child) properly as suggested by many Q&A forums and tutorials.
I have a model ...
1
vote
1answer
168 views
Should I move a parameter check from my controller to my model?
I have a belongs_to relationship that can be removed without destroying either the parent or the child (transfer_form). Users can eliminate the parent relationship by selecting the blank option in a ...
0
votes
1answer
152 views
Rails Unable to persist grandchild nested attribute using update_attrib
I'm working on a paperclip upload system where I have a User who has many Uploads which in turn have many Upload_Images relationship.
Due to the nature of how my system is meant to work, a User is ...
0
votes
1answer
99 views
Rails: update_attributes does not update any other existing instances referring to the same model instance
I realised the following:
user1 = User.create - creates a model with id 1 and age is 0
same_user = User.find(1)
same_user.update_attributes(:age => 18)
p same_user.age # prints out 18
...
0
votes
2answers
329 views
Rails: simple update_attributes not working
I have a "rota" model with an attribute "turn_index". For some reason, update_attributes does not seem to be working. Any clue why?
rota = Rota.create
rota.turn_index.should == 0 -- passes
...
0
votes
1answer
289 views
DELAYED_JOB Update_attribute in delayed job is not working, table not updated
I has been wanted to do the Delayed::Job which to do the fbLikes ( I post a lot on StackOverFlow but still haven't solve the problem yet) My table n database have name, id, fbLikes, fbId, url.
Here is ...
4
votes
1answer
2k views
rails update_attributes returns false when trying to update db values
hoping someone here can point me in the right direction.
I have a controller Update def running "update_attributes". Currently it returns false, with no error message. I'm fairly new to Ruby, but ...
1
vote
1answer
107 views
option changing attributes based on another option
I have 2 drop downs. The first drop down is the design color. The second one is what the design is going to be printed on. Sometimes we have red designs, but they can't be printed on red wraps as ...
2
votes
5answers
497 views
update_attribute/s() is calling callback for save password
I'm trying to update single attribute of a user model from a admin controller (not users controller).
While doing this I tried update_attribute() but it was changing the users password also.
I ...
1
vote
2answers
1k views
Nested attribute update_attributes uses insert rather than update
I have a user and nested profile class as follows:
class User < ActiveRecord::Base
has_one :profile
attr_accessible :profile_attributes
accepts_nested_attributes_for :profile
end
class ...
4
votes
1answer
1k views
Rails update_attribute
Ive got the following problem. I have a model called user which has a column named activated. Im trying to update that value whith the method activated?, but it gives me the error: Validation failed: ...
0
votes
1answer
58 views
array of appointments being chosen instead of one appointment
Okay so I am trying to allow a student to choose an appointment with a professor from a table of available appointments. when I press "choose" it takes all the appointment_id's from the table and then ...
0
votes
1answer
136 views
update_attributes issue - all dates being passed as time and not datetime
Using RAILS 2.2
Hello
I am having an issue where my dates are being set to Time.now when I update a call. This is because the Update statement is only passing the time, not the datetime.
You can ...
0
votes
0answers
180 views
Rails 3 - passing a different foreign key through an update action via edit form
I've been trying to find the answer to this on my own for a day or so now, and I'm ready to throw in the towel. I'm developing a simple app right now (Rails 3.2.1, Ruby 1.9.3), and it has the ...
2
votes
1answer
2k views
Rails 3 - how to save (un)checked checkboxes?
I have in a form (form_tag) several checkboxes like this:
<%=check_box_tag 'model_name[column_name]', 1, (@data.model_name.column_name == 1 ? true : false)%>
And updating them like:
variable ...


