The update-attributes tag has no wiki summary.
18
votes
2answers
25k views
Rails: update_attribute vs update_attributes
Object.update_attribute(:only_one_field, "Some Value")
Object.update_attributes(:field1 => "value", :field2 => "value2", :field3 => "value3")
Both of these will update an object without ...
6
votes
2answers
315 views
problem with passing booleans to update_attributes
I've got the following Model:
class GuestCatering < ActiveRecord::Base
# Validation
validates :name, :presence => true
validates :order_number, :presence => true
validates ...
3
votes
1answer
1k views
Rails - update_attributes coming up against validations
So I've got a user model, with login, email address, password, password confirmation, name, avatar (picture), etc. There are validations on the first 5, basically stating that all 5 need to exist in ...
2
votes
1answer
93 views
Is there a way to prevent serialized attributes in rails from getting updated even if there are not changes?
This is probably one of the things that all noobs find out about Rails sooner or later. I just realized that rails is updating all fields with the serialize keyword, without checking if anything ...
2
votes
4answers
601 views
How to “update_attributes” without executing “before_save”?
I have a before_save in my Message model defined like this:
class Message < ActiveRecord::Base
before_save lambda { foo(publisher); bar }
end
When I do:
...
2
votes
3answers
315 views
Rails: update_attributes not updating all attributes
I have a simple model called Discussion which has a boolean column called resolved.
In my form, I have the following code
<%= form_for(@discussion) do |d| %>
...
<%= d.check_box :resolved ...
1
vote
2answers
69 views
rails update_attributes
My user model has
validates :password, :presence => true,
:confirmation => true,
:length => {:within => 6..40}
and my ...
1
vote
0answers
31 views
validation_context & update_attributes
How can I specify validation_context with update_attributes ?
I can do that using 2 operations (without update_attributes):
my_model.attributes = { :name => '123', :description => '345' }
...
1
vote
0answers
29 views
Thinking sphinx updates delta index even when no fields are updated
Even when no fields specified in update attributes actually changes , thinking sphinx sets delta = 1 which results in large number of unwanted queries being fired . can we do something to let sphinx ...
1
vote
2answers
185 views
Using Friendly ID and i18n with update_attributes causes overwrite
Using:
- Rails 3.0.3
- Friendly_id 4.0.0 Beta 11
- Windows
- i18n (0.6.0, 0.5.0) according to "gem list"
Set-up:
I have a multilingual website about calculations using Swedish and English as ...
1
vote
1answer
43 views
How to update “my_field” of N posts in less than N queries?
How could I improve the performance of the following updates ?
Post.find(id1).update_attributes(:my_field => value1)
Post.find(id2).update_attributes(:my_field => value2)
...
1
vote
3answers
202 views
Updating `User` attributes without requiring password
Right now, users can edit some their attributes without having to enter their password because my validations are set up like this:
validates :password, :presence =>true, :confirmation => ...
1
vote
1answer
126 views
Ruby on Rails Tutorial: How to edit user information without confirming the password
I've been working through the Ruby on Rails Tutorial by Michael Hartl. Currently, in order to edit any of the User attributes, the user must confirm their password. Is there any way to update the ...
1
vote
1answer
80 views
Updating Model Attributes Through Show Page
I am looking to allow a user to update a model's attributes through the model's show page, then submit, to display updated attributes. :startdate and :enddate are in my attr_accesible list for the ...
1
vote
2answers
141 views
Rails Nested Forms Not Updating
I'm having a problem getting update_attributes to update nested models in my form. I don't have any errors but the nested attributes aren't saving. Here's the relevant code:
Users model:
class User ...
1
vote
2answers
507 views
How to accomplish an update_attributes without actually saving the changes
Fundamentally, I want to do an ActiveRecord "update_attributes" while leaving the ActiveRecord changes pending. Is there a way to accomplish this? Read on if you are wondering why I would want this.
...
1
vote
3answers
204 views
show error messages from two models when updating Rails
I am updating the attributes of two models from one form.
User.transaction do
begin
@user.update_attributes!(params[:user])
...
1
vote
2answers
407 views
what `update_attribute` return if it get failed?
I have following piece of code
@user = User.find(params[:id])
if (@user.activation_status == "active")
#some code here
@user.update_attribute('activation_status' ,'inactive') # Line 44
#send ...
0
votes
1answer
17 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 ...
0
votes
1answer
24 views
Rails: updating an ActiveSupport::TimeWithZone field with Time by update_attributes fail
In Rails 3.1.3 with Postgresql, if you create an attribute as datetime, its class with ActiveSupport::TimeWithZone. However, anyone who can explain this:
user=User.first
...
0
votes
3answers
68 views
rails 3 undefined method `update_attributes' for nil:NilClass
Im new to Ruby and rails. Im doing a form which updates :owner value in Hardware database. in using custom views name transfer.html.erb. my form code are display bellow.
<%= form_for @hardware, ...
0
votes
2answers
210 views
Rails 3.2 Updating Nested Attributes
Here's my problem. If I go to Projects#edit, I am unable to change the course it is assigned to. If I attempt to create a new course for it, or choose from an existing one, I get the following error:
...
0
votes
1answer
82 views
Ruby on Rails issue with update_attributes, after changing route
Ruby 1.9.2p290
Rails 3.1.0
I built my site from scaffolding and am trying to change my routes, so, instead of using the :id, I can use :gameNumber.
In my controller I changed
from
@ticket = ...
0
votes
1answer
52 views
Rails counter_cache'd association being updated with update_attributes; counter_cache column not updated
I'm running a Rails 2.3.14 app that is using a counter_cache column, something similar to:
Workshop
belongs_to :group, :counter_cache => true
Group
has_many :workshops
If I assign my ...
0
votes
1answer
55 views
update_all works but update_attributes doesn't
The two codes below are for updating the database.
The first version, which uses the 'update_attributes' property is not working
@existing_exp = Emiexperiment.find(:first, :conditions => [ ...
0
votes
0answers
66 views
Update attribute on a rails app using mongodb with mongoid
I have a simple method in my model that I am trying to get to update a record in my database, here is the model.
class Project
include Mongoid::Document
key :name, String, :required => true
...
0
votes
1answer
64 views
Rails 3.1 Bizarre ActiveRecord Behavior in Create action
Using Rails 3.1.0
def create
@practice = Practice.new(params[:practice])
respond_to do |format|
if (current_user.practices << @practice rescue false)
pmf = ...
0
votes
1answer
189 views
mongoid.update_attributes fails on new embedded object
I try to create a new embedded object with update_attributes from its parent. In mongoid 2.0.0.beta20 this worked fine, but after updating to 2.3.3, this fails.
To reproduce, you can use this model ...
0
votes
1answer
31 views
Why updating an attribute in model causes to query another table?
Given:
message = Message.find(1)
When I do:
message.update_attributes(:created_at => ...)
I see in the log:
SELECT `users`.* FROM `users` WHERE (`users`.`id` = 5) LIMIT 1
UPDATE `messages` ...
0
votes
1answer
122 views
Undefined method update_attributes?
Im trying to allow the user to update the attributes for a single column for multiple elements based on a drop down (with name="status) but i keep getting back the error: undefined method ...
0
votes
1answer
202 views
Validation on missing attributes on update_attributes
The question is very simple, does update_attributes validates every possible validation of the model, even if I don't want to update some of the attributes?
I have a edit view, where the user might ...
0
votes
1answer
63 views
How to update attributes on database using Ruby on Rails 2.3.9
I'm working on a controller action and, what I want to do is to modify a record in the data base.
I have the following code:
def save_reserve
@pnr = Pnr.find_by_email(params[:pnr][:email])
...
0
votes
0answers
100 views
Updating only the title of a file without calling the uploader
I'm using Carrier Wave to upload images and I want to only edit the title of the image.
I've tried:
@image.update_attribute(:title, params[:title])
and
@image.update_attributes(:title => ...
0
votes
2answers
396 views
update_attributes NoMethodError when form value contains question mark in rails 3.1
When I try and update a field with a value containing a '?', update_attributes returns:
**NoMethodError**
You have a nil object when you didn't expect it!
You might have expected an instance of ...
0
votes
0answers
163 views
update_attributes in activeresource 2.3.5
I have an application developed in rails 2.3.5...
I am using a class inherited from ActiveResource::Base
now if i try to do update_attributes using this then it throws error
undefined method ...
0
votes
1answer
120 views
Trying to set a variable in before_validation but it isn't working
So in my view I'm using a calendar to select a day and drop downs to select time. Therefore I'm using a before_validation method to put it together:
proposed_time.rb
before_validation ...
0
votes
2answers
123 views
rails-how to update attributes based on time/day
How would you update attributes in your database based on the time of day or what day it is. I have three attributes energy, hunger, and happiness that I want to decrease by ten every hour but I don't ...
0
votes
1answer
334 views
Rails updating attributes of a User Model from OrdersController
This my code:
class OrdersController
def create
@order = Order.new(params[:order])
if @order.purchase
work = GATEWAY.store(credit_card, options)
result = work.params['billingid']
...
0
votes
0answers
224 views
Rails: methods registered on validate_on_create instead of validate_on_update are called on update_attributes method call, am i missing some basics?
I am trying to update some of attributes of model, using either save function or update_attributes. I have defined some methods to validate model on create operation. Problem i am facing is that ...
0
votes
3answers
1k views
Rails: How to check if “update_attributes” is going to fail?
To check if buyer.save is going to fail I use buyer.valid?:
def create
@buyer = Buyer.new(params[:buyer])
if @buyer.valid?
my_update_database_method
@buyer.save
else
...
end
end
...
0
votes
2answers
719 views
update_attributes not working for many-to-many nested attributes
I have some nested attributes in some models as such:
class Employee < ActiveRecord::Base
has_one :user, :as => :user_role, :dependent => :destroy
accepts_nested_attributes_for :user, ...
0
votes
1answer
597 views
nested model form and update_attributes
I have a nested-model form with a one-to-many relationship between a class Project and class TeamMember, and in the controller, an update function like :
@project = Project.find(params[:id])
...
0
votes
1answer
412 views
rails validation on accepts_nested_attributes_for and habtm association in an update resets the association
In rails 2.3.8 I am having trouble with validations on a accepts_nested_attributes_for association if I loop through or even inspect the habtm association in validation the lessons are loaded and any ...
0
votes
2answers
298 views
how to update_attributes with the conditions?
I need to update attributes but only for rows with the specific conditions like
["recipient_id = ? and inbox_id = ? and status='unread'", current_user.id, @inbox.id]
How do I do it?
0
votes
1answer
66 views
Rails: saving a string on an object — syntax problem?
Hey there,
I am trying to write a simple function to clean a filename string and update the object. When I save a test string it works, but when I try to save the string variable I've created, ...
0
votes
1answer
1k views
ruby-on-rails: update_attributes overrides model validations?
I have a typical, Post model:
class Post< ActiveRecord::Base
validates_presence_of :user_id #Line 1
validates_presence_of :title,:body ...