I\'ve a three level nested form, but the third class is not saved. I\'ve three model classes (simplified)
I\'ve been trying to get a dynamic nested form working with ajax in rails 3. Originally I was following this example project and one of the helpers (add_task_link) looks really good, except that I ca
I have this problem: My web application has a form where the users can customize their profile. In each profile can be specified many skills and I want to allow the users to press one button (add new
I am trying to create a nested form to handle a has_many :through relationship and getting duplicated fields being rendere开发者_运维百科d.
I have a one-to-one relationship between user and goal. I want to build a form that shows the goal of a user. The problem is that my code only works when the user already has a goal defined. The text
I have three models: class Client < ActiveRecord::Base has_many :balancesheets has_many :investment_assets, :through => :balancesheets
I have a nested_form where nested elements are dynamically added and removed in a form, using Javascript.
i have many to many throught asociation and then i do this fields_for :device this displaying in good way, but i cannot save it i get unknown attribute :price
I\'am a stackoverflow newbie. Please be merciful ;-) I h开发者_如何学JAVAave a simple has_many association with accepts_nested_attributes_for. Everything works fine. But I what I really need are the
I have a profile, and this profile has many cursos (courses). I show all the courses a profile has on the show.html.erb of this profile.