RubyOnRails allows you to access attributes of objects associated with the main model, using one, deep hash.
I am using ActiveAdmin and Rails 3.1 -- having problem understanding whether the following is a bug, or if there is …
ruby-on-rails ruby-on-rails-3 formtastic nested-attributes activeadminSo I'm working from this Railscast. And I'm aware that there have been some changes in Rails 4 for Strong parameters. …
ruby-on-rails ruby-on-rails-3 ruby-on-rails-4 nested-attributesIssue: Instead of updating nested attributes, they are being created on top of the existing nested attributes when I hit …
ruby-on-rails ruby-on-rails-4 nested-attributes nested-form-forI have a user and nested profile class as follows: class User < ActiveRecord::Base has_one :profile attr_accessible :…
ruby-on-rails nested-attributes update-attributesI am working on a web-app using Devise and Rails 4. I have a User model which I have extended with 2 …
ruby-on-rails devise nested-forms nested-attributes strong-parametersI've got two models. - Parent has_many Children; - Parent accepts_nested_attributes_for Children; class Parent < ActiveRecord::…
ruby-on-rails ruby nested-attributesI am trying to reproduce railscast #196 in Rails 4. However, I'm experiencing some problems. In my example I try to generate …
ruby-on-rails object nested-forms nested-attributesI'm trying to follow Ryan Bates RailsCast #196: Nested model form part 1. There're two apparent differences to Ryans version: 1) I'm using …
duplicates ruby-on-rails-4 nested-attributesI'm trying out angular JS and I want to get data from a nested resource defined in my rails application. …
ruby-on-rails-3 json angularjs nested-forms nested-attributesI have this one to many relationship: class Programa < ActiveRecord::Base attr_accessible :descripcion, :nombre, :roles_attributes has_many :…
ruby-on-rails nested-attributes has-many