I can''t get both of these validations to work, I must comment out one
or the other.
before_validation :amazon_ecs_lookup_item, :on => :create
before_validation :amazon_ecs_lookup_item, :on => :update, :if
=> :refresh
in this case only update works
before_validation :amazon_ecs_lookup_item, :on => :create
# before_validation :amazon_ecs_lookup_item, :on => :update, :if
=> :refresh
now create works
I guess you can only code 1 so how do you code it?
before_validation :amazon_ecs_lookup_item, [:on => :create, {:on
=> :update, :if => :refresh}]
doesn''t work.
Any ideas?
--
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
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.
I think wrap your amazon_ecs_lookup_item with
if new_record? or refresh
...
end
On Mon, Feb 14, 2011 at 5:26 AM, Shirl Hart
<sh9hart-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> I can''t get both of these validations to work, I must comment out
one
> or the other.
>
> before_validation :amazon_ecs_lookup_item, :on => :create
> before_validation :amazon_ecs_lookup_item, :on => :update, :if
> => :refresh
>
> in this case only update works
>
> before_validation :amazon_ecs_lookup_item, :on => :create
> # before_validation :amazon_ecs_lookup_item, :on => :update, :if
> => :refresh
>
> now create works
>
> I guess you can only code 1 so how do you code it?
>
> before_validation :amazon_ecs_lookup_item, [:on => :create, {:on
> => :update, :if => :refresh}]
>
> doesn''t work.
>
> Any ideas?
>
> --
> 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
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To unsubscribe from this group, send email to
>
rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> For more options, visit this group at
> http://groups.google.com/group/rubyonrails-talk?hl=en.
>
>
--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.
Thanks. That makes sense. On Feb 14, 12:58 am, Jim Ruther Nill <jvn...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> I think wrap your amazon_ecs_lookup_item with > > if new_record? or refresh > ... > end > > > > > > On Mon, Feb 14, 2011 at 5:26 AM, Shirl Hart <sh9h...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > I can''t get both of these validations to work, I must comment out one > > or the other. > > > before_validation :amazon_ecs_lookup_item, :on => :create > > before_validation :amazon_ecs_lookup_item, :on => :update, :if > > => :refresh > > > in this case only update works > > > before_validation :amazon_ecs_lookup_item, :on => :create > > # before_validation :amazon_ecs_lookup_item, :on => :update, :if > > => :refresh > > > now create works > > > I guess you can only code 1 so how do you code it? > > > before_validation :amazon_ecs_lookup_item, [:on => :create, {:on > > => :update, :if => :refresh}] > > > doesn''t work. > > > Any ideas? > > > -- > > 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > To unsubscribe from this group, send email to > > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > For more options, visit this group at > >http://groups.google.com/group/rubyonrails-talk?hl=en. > > -- > ------------------------------------------------------------- > visit my blog athttp://jimlabs.heroku.com- Hide quoted text - > > - Show quoted text --- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.