A form within another form, often in the ruby-on-rails environment.

learn more… | top users | synonyms

0
votes
1answer
18 views

Editing multiple records in one form - Rails

I'm trying to edit multiple records using one form, so the user can edit a few records then press submit at the end rather than after each individual one. I've posted my current code, and I get this ...
0
votes
0answers
18 views

Rails cocoon - changes in the fields nested form

I use standard rails forms and cocoon gem for add nested model fields to form. I have a model route and nested model route_point. There is a model manager and the nested model ...
0
votes
1answer
24 views

Rails: duplicating information into another model if conditions met

I've got a list of articles with checkboxes on a form. When a box is checked, the body of the selected article is copied into one of x text areas. Should a user want to make a change to the body of ...
0
votes
0answers
25 views

Modeless dialog created by modal dialog in Compact Framework

I am working on a Compact Framework application. This particular hardware implementation has a touchscreen, but its Soft Input Panel has buttons that are simply too small to be useful. There are more ...
0
votes
0answers
19 views

Rails nested form update on back button

I've got a Rails 3.0.x application which has a nested form (people has many current_positions). When I edit, submit and then hit the back button and submit again it used to error, but now I ignore ...
0
votes
0answers
23 views

Nested form not saving

So I'm fairly new to rails and followed a Railscast tutorial adding nested forms and adapted it for rails 3.2 which worked perfectly in the demo project I created. However, when I then tried to ...
1
vote
1answer
41 views
+50

Implementing model subclasses - the correct way

I have an Event model and I want to create two subclasses of it: FixedEvent and TasksEvent Event model has these attributes: uid :string title :string starts_at :datetime ends_at ...
0
votes
0answers
31 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
1answer
20 views

Link in Nested Forms returning Invalid Association

I'm using Nested Forms to create a complex list of forms for a group of models associated with it. However, when I add the link_to_add link in my form it returns an error message, Invalid ...
0
votes
1answer
26 views

Rails simple_form Nested Model Fields Won't Render

I'm using Rails 3.2 and simple_form to build an application. I'm trying to have each nested model display it's fields in a different tab using Twitter Bootstrap. From reading some stack overflow ...
1
vote
2answers
49 views

Rails: submit form with nested attributes throws 'couldn't find entity with id=xxx'

I got the following model classes: class Movie < ActiveRecord::Base has_and_belongs_to_many :actors accepts_nested_attributes_for :actors, :allow_destroy => true ... end and class ...
0
votes
1answer
21 views

Rails: Use same partial for creating and editing nested items

I followed the Getting Started With Rails tutorial to set up a simple blog with comments. I went to apply it to my own scenario: histories with history items. Everything was more or less fine until I ...
6
votes
1answer
103 views

symfony2 multiple nested forms prototype

I want to include a collection type inside another collection type. It should look like this: Using just one collection works fine, but I need to edit the prototype of the outer form, so it renders ...
0
votes
2answers
34 views

Nested resources with independent views model name error in Ruby on Rails

In routes: resources :users do resources :service_exps end user model: has_many :service_exps service_exps model: belongs_to :user In service_exps controller new action: def new user = ...
0
votes
0answers
24 views

ActionView::MissingTemplate nested model fields dynamically through JavaScript

I tried to follow this Railscast tutorial. So, basically I have a model gallery that has nested_model with model picture. And I want that admin can add many as many picture as he wants. I followed the ...
2
votes
1answer
48 views

Rails: Photo uploads (Paperclip) with nesting & strong params

Background: I'm trying to add photo uploads to an Advert model using Strong Params with the Paperclip gem, where Photo is a separate model which "has_attached_file" :upload, and I am calling ...
0
votes
0answers
25 views

Error while editing nested form, rails

I'm using nested form and want to add 'edit option' option like = link_to 'Edit', edit_user_service_exp_path(@service_exp.user, @service_exp) But it gives error 'no route match'. all other ...
1
vote
1answer
94 views

Paperclip::AdapterRegistry::NoHandlerError nested data and storage s3

I am using Paperclip to upload multiple images and store it in s3. So, I have a gallery model, which looks like this : class Gallery < ActiveRecord::Base attr_accessible :title, :body, ...
0
votes
0answers
22 views

rails nested forms with simple_form and nested form issues

I've been experiencing some strange behavior from my nested form for students within users and I was wondering if I could get some help. Simple form: https://github.com/plataformatec/simple_form ...
0
votes
1answer
30 views

How to create double nested model with a twist in Rails 3?

I'm creating a registration where I have "Person" "Child" and "Meal" Models. Person can have many Children and can register many Meals for themselves but also many Meals for Children. The point is ...
0
votes
3answers
48 views

Rails 3 - adding inputs with values (nested-form)

I have some troubles with Rails3 and nested-form gem. Adding empty inputs is great but I also want to have select tag with predefined filled forms, and when I choose one of options script will add ...
2
votes
2answers
86 views

When I click create in activeadmin, I get a mass assignment error

So i have active admin. I have a customer model and a address model. I have address nested with in customer. When i click create customer, I get a mass assignment error. error ...
6
votes
1answer
54 views

has_many nested form with a has_one nested form within it

I am currently trying to make a form for a model, which has a dynamic number of nested models. I'm using Nested Forms (as described in RailsCasts 197). To make things even more complicated, each of ...
1
vote
1answer
38 views

Get nested form field id number from cocoon

i am trying to get this result: <input class="file required" id="page_media_attributes_1367414416272_image" multiple="multiple" name="page[media_attributes][1367414416272][image]" type="file"> ...
1
vote
2answers
51 views

missing partial when putting a model in another model

I have never seen an error like this, so I don't even know what information of my app to share with you. I am putting an 'address' model inside a 'customer model'. Here is the error. (edit)I am using ...
0
votes
0answers
28 views

Duplication fields with nested form

I have polymorphic model Images and Post/Account etc. models: class Image < ActiveRecord::Base ... belongs_to :imageable, polymorphic: true ... end class Post < ActiveRecord::Base ... ...
0
votes
1answer
33 views

Making fields_for display properly in multistep form partial

I'm inserting =f.fields_for :customer in the second partial of a multi step form as described here. It works fine if it's on the first step of the form (_voucher_partial.html.haml), but won't display ...
0
votes
1answer
36 views

Can't mass-assign protected attributes in multistep form

I'm doing something I thought would be quite simple that's ended up being very complicated. I've followed this Railscasts to create a multistep form. Now I'm trying to nest a form in Order views to ...
0
votes
0answers
32 views

Multiple Nested Form Has Many

I try nested form screencasts from railscasts here's controller from railscasts @survey = Survey.new 3.times do question = @survey.questions.build 4.times { question.answers.build } ...
0
votes
0answers
39 views

HABTM (rich association) nested form for images (rails).

I'm trying to create a form for adding images to my pages through rich HABTM association. The basic idea is to let the user be able to ether select an already uploaded image, or upload a new one. I ...
0
votes
1answer
33 views

Nested form not appearing (simple_form)

I have a model named Page and one named Medium. Medium is for uploaded images. The two models are connected with a rich HABTM association. I want to be able to upload images through my page edit ...
0
votes
1answer
35 views

Ruby on rails 3.2 accepts_nested_attributes validations

I am working on a ruby on rails 3.2 app and I need to validate a form with nested attributes. In my model I had this class Member attr_accessible :email, :password.............etc has_many ...
0
votes
0answers
43 views

Error with jQuery 1.7.2, nested_form, and simple_form

I'm getting "Uncaught Error: Syntax error, unrecognized expression: #[object Object]_fields_blueprint" when clicking the link_to_add link in my nested form. form.html.erb <%= ...
1
vote
1answer
62 views

Wicked Wizard Step and Nested Form Rails

I'm trying Wicked gem for my quiz application rails. The first step is form for quiz (name, time, countofquestions etc). After submit these information, the last step quiz should enter quetions and ...
1
vote
1answer
73 views

not saving nested form model data rails?

When I am saving the applicant model it is not saving the nested model data to data base. Please help me of his issue. I have pasted my controller code, model code & passing parameters My ...
0
votes
0answers
29 views

Radio Button On Nested Form

I tried tutorial 1 and tutorial 2 for my quiz apps Here's associations model looks like : class Quiz < ActiveRecord::Base has_many :questions, :dependent => :destroy ...
0
votes
2answers
42 views

Nested form not working to save client_id and user_id

I have Users, Users have many Clients and Contacts. Clients also have many Contacts (a Contact belongs to both Users and Clients). In my client view, I want to create a new Client and on the same ...
0
votes
1answer
20 views

another mass assignment error for nested form

I've done this 10 times and every time I seem to run into some issue with nested forms. Here's what I have: client controller: def new @client = Client.new @contact = @client.contacts.new ...
0
votes
1answer
29 views

nested_form giving me error wrong number of arguments (4 for 3)

wrong number of arguments (4 for 3) Extracted source (around line #): enter code here <%= f.text_field :name %> # <%= f.fields_for :tasks do |task_form| %> <%= task_form.text_field ...
0
votes
1answer
48 views

Can't mass-assign protected attributes: works_attributes, educations_attributes in rails nested model

I am trying to save the model called applicant with nesting to work and education model. When saving the model, I am getting: Can't mass-assign protected attributes: works_attributes, ...
0
votes
1answer
44 views

Nested Django Forms: 'ManagementForm data is missing or has been tampered with'

So i've looked around and it seems nobody has had the same problem that I am having to cause this seemingly common error. I am rendering some forms in my html as follows: <form method="post" ...
0
votes
2answers
66 views

in nested form- Can't mass-assign protected attributes:

I have read through several threads and nothing so far. I am trying to nest one form in another. I am getting the can't mass assign protected attributes error. \ ...
1
vote
2answers
40 views

Rails nested_forms not displaying fields when dynamically adding extra objects

I'm currently using the nested_forms gem and I'm trying to be able to add multiple landlords to a property. At the moment the associations are quite deep: Property -> Landlord -> Contact_Detail -> ...
0
votes
0answers
18 views

can't convert Fixnum to String ruby client side validation

This is the code that's causing problems <%= f.select :dateopen, [['Sun', 0], ['Mon', 1], ['Tue', 2], ['Wed', 3], ['Thu', 4], ['Fri', 5], ['Sat', 6]] %> to <%= f.select :dateclose, ...
0
votes
0answers
18 views

When destroying using accepts_nested_attributes fails

So I have a User model which has_many EmailAddresses. I am using a simple_form_for @user and user accepts_nested_attributes_for :email_addresses for the form to create and destroy these ...
1
vote
1answer
68 views

How to internationalize (I18n) generic error messages on a failed validation in Rails 3.1?

I would like to be able to provide internationalized, helpful error messages. I have a generic error message partial view rendering for a nested form submission # _error_messages.html.erb - ...
0
votes
2answers
99 views

nested_form not saving to model Rails 3

I think I am on the right path for the following, though i cannot save the form data to the model. I have 2 models class Prediction < ActiveRecord::Base attr_accessible :home_team, :away_team, ...
0
votes
0answers
44 views

select tag not working using nested form gem

I'm using the nested form gem, using the data target feature to add/remove rows in a table of mine. Everything works great but I'm trying to add another column that is text_area rather than text_field ...
0
votes
0answers
20 views

Show a nested model by default in RailsAdmin

How would I go about showing a nested resource by default when editing an entry in RailsAdmin? Currently it exists as a button that you have to click to show the contents.
1
vote
0answers
45 views

Rails, CanCan nested forms security issue. Read allows to do anything with model

On my site, customer can create some groups and products. Every product is belongs_to group. Every user can create and update groups, but only which they create themself. I'm using CanCan gem to ...

1 2 3 4 5 17