Form helper to bind a form to a model object in Rails.
0
votes
0answers
23 views
Model Nil class error ruby on rails
i am trying to access the form in categories view while its controller new and create is written in user_questions controller as below .
Its giving error of nill class model.Please help
...
0
votes
2answers
19 views
Create a form_for in one view that posts to a controller for another view
I think this is pretty simple, but can't find an explanation anywhere on how to do it.
I have a profile page that has a form that when submitted should go though the CompletedSetsControllerbut I ...
0
votes
1answer
21 views
dropdown list using form_for [ruby on rails]
I have User model and there are boolean attributes admin , employee , student inside User model , how to make one of those attribute true if selected using a list box
0
votes
1answer
18 views
Conditional options for Rails methods?
I want to add a class to a form_for method, but how would I do that?
<% if @plan.price == 0 %>
<%= form_for @account, :html => { :class => 'new_account' } do |f| %>
<% else ...
0
votes
2answers
23 views
Couldn't find ArticlesSkill with ID=1 for Article with ID=
I am trying to create an article.
class Article < ActiveRecord::Base
belongs_to :article_skill
attr_accessible :articles_skill_attributes
accepts_nested_attributes_for :articles_skill
end
...
0
votes
1answer
25 views
How to use If,else in form_for helper to extract specific field
I have following code in my edit view:
<%= form_for @content do |f|%>
<% if f.text_field :home %>
<%= f.label :Home %>
<%= f.text_field :home %>
<% elsif ...
0
votes
0answers
40 views
form_for with onsubmit() jquery function
I have this form for user input
<%= form_for @user, :html => {:name=>"new_user", :method => :post, :onclick => "return validate(this);", :multipart => true} do |form| %>
...
0
votes
2answers
22 views
Using Rails' form helpers without a model
For various reasons I need to avoid traditional nested forms (nested in the sense of treating the fields like a sub-group of the primary model for the page), but still want to keep fields grouped ...
0
votes
2answers
36 views
How to Make Nested Form?
I want to make a nested form step by step between two models , has_one
The nested form should make me able to choose options from one of the models and save it into the other one
0
votes
1answer
46 views
rails - form_for - how to have my 'Property' form update the 'Ticket' model?
I have 3 tables- OwnerofProperty , Property and Ticket. I want to make a form using form_for to represent property booking; can I make a form to retrieve data from Property where the submit button ...
0
votes
1answer
49 views
Form_for select field, concatenating data into the display string
I am trying to use a form_for collection_select to display some select field options of account types.
Its occurred to me that it would be easier for the user if they could see the price of the type ...
0
votes
2answers
32 views
Submit a form to a model from my homepage
I have a links model which has all the generic scaffold created for it, however, rather than go to the link#new page, I'd like to submit a form from my homepage that populates a new record.
I only ...
0
votes
3answers
35 views
Pre-populated association for nested form rendered empty
My PlanList has_many :items.
I want my plan_list#new to have a nested form, where I can pre-populate items.
I tried
# View
<%= form_for @plan_list do |f| %>
<%= f.fields_for :items do ...
0
votes
1answer
11 views
form_for doesn't save to db
I have a very basic Rails application that has some standard scaffolded CRUD resources that worked just fine. All of a sudden, and I can't figure out why, the "form_for"s are no longer saving or ...
0
votes
1answer
39 views
Cannot submit Checkbox through nested form
Im trying to create an application were teachers a able to select students each day who aren't in school. I created the models through nifty-generators gem. The problem is that it wont submit to the ...
0
votes
1answer
39 views
Form_for in Rails 3 is considering only the first submit button wth Form.serialize(this) in AJAX request
I'm working on a Rails 3 app. One of the view had only one submit button and now I'm supposed to add one more. I have done all the necessary changes in view file (.html.erb) and in controller.rb. But ...
1
vote
0answers
37 views
Syntax to route Rails form_for to custom controller
Have tried forums, documentation and blog suggestions. They converge on syntax that for me does not properly save AND route through desired controller.
Big picture, I have two software applications ...
0
votes
2answers
24 views
How do you add text inside a text field in Rails?
I would like to add username inside the username text field in my application (vs having a label next to it) the user would be able to type over this text. I've seen it done in html but I'm confused ...
0
votes
2answers
68 views
Manage Single Rails form to other controller with create and update action
i'm new of rails. I use rails 3.0.5 .
I have an EMPLOYEE resource, but I would like to manage it with another extern controller (emp_profile_controller).
This extern controller ...
0
votes
2answers
110 views
Reading value from text field of form_for in rails 3, params[:x] not working
I have sign up form in Rails 3.2.9 . It contains a text field for login name called 'login' in a form-for ,I want to use the value in that field to check in database for duplicates for check login ...
0
votes
1answer
29 views
Passing a collection_selection and text_field values in a form_for, rails
The Attraction model belongs to Destination.
I'm trying to create a new attraction (text_field :name) but also linking it to an already-created destination. These destinations are rendered in a ...
1
vote
1answer
53 views
Devise + client_side_validations using Rails 3.2.1
I posted a recent question asking for help on how to get the client_side_validations gem to work with Devise. I received a prompt response from the author of the gem, to try a different version of the ...
0
votes
1answer
46 views
Append/Update params to an existing form using form_for
Fairly new to rails, meaning I believe I have most of the basics down, but definitely still a student of the art.
What I'm trying to accomplish: append params to an existing form using form_for.
So, ...
0
votes
1answer
18 views
form_for signature for Mongoid::Document subclass
I have a Mongoid document as :
class Index
include Mongoid::Document
end
And two subclasses for 'Index' as:
class PercentileRankIndex < Index
end
class SocialStockIndex < Index
end
...
1
vote
1answer
41 views
Rails 3 - Prevent form_for DOM action change
To generalize this question I asked this morning, and please accept my apologies if this has been asked before and I simply don't know what to search for, but I'm curious how Rails handles the ...
0
votes
1answer
28 views
Using non associated models data in a form
Is it possible to access another models attributes without having associations? For example I want to create a Prediciton record via a form using the fixture models attributes
<%= form_for ...
0
votes
1answer
51 views
bootstrap with f.select not setting width properly
I have a select field in a table and I can't seem to set the width properly. Initially, I tried just using a span but that didn't work. Then, if I try using %select the options for select sit outside ...
0
votes
0answers
47 views
Can't send attributes through RailsAdmin custom action form
I am trying to set up a custom crop action with Rails Admin.
I have the action set up, but am having an issue passing the cropping coordinates to save the cropped image. I want to pass the 'crop_x', ...
0
votes
2answers
27 views
Undefined method *_path when trying to use form_for
Category controller:
def new
@cat = Category.new
respond_to do |format|
format.html
end
end
View:
%p Add new category:
~form_for(@cat) do |f|
%div.field
~f.label :name
...
1
vote
4answers
67 views
Require old password to make new password
Right now every time I change anything in user/edit the form requires the user to set a new password. I would like for it to require the current password (how can I ask for current password?) only ...
1
vote
1answer
80 views
How to pass an object through a form_for rails?
I have a problem. There is a form in which you need to pass two values ​​and two object (teamh, teamq).
<%= form_for (Score.new) do |f| %>
<p>
<%= f.hidden_field ...
1
vote
1answer
81 views
Create checkbox array in form_for rails
I have this _form file.
<%= form_for(@company) do |f| %>
<%= f.label :name %>
<%= f.text_field :name %>
<%= f.label :company_type %>
<%= f.select :company_type_id, ...
0
votes
0answers
27 views
Nested resource with a singular parent that has… a plural name
A user has a singular set of their 'preferences'. The resource aught to be singular because a user has just one set of preferences that they should be aware of. The name should be plural, because that ...
0
votes
1answer
24 views
Multiple forms for the same model with different associations in Ruby on Rails
I am building a Project management with the following associations:
Project
- Section
- Milestone
- Issue
Inside app/views/section/show.html.erb - I want to have the entire section's ...
1
vote
1answer
41 views
Rails: Overwrite Form Builder's button method?
when I use the Form Builder in form_for to generate a button (with f.button) it generates a button with the title " ". What I want to do is add a prefix to this title: "MyPrefix ".
So basically all I ...
1
vote
2answers
56 views
Rails collapse nested form
Does anyone have any idea/resources for how to create a form in Rails that can use either bootstraps "Collapse" or Jqueries "Accordion" functionality? Basically, I have a huge form with many nested ...
0
votes
1answer
103 views
Ruby on Rails saving multiple instances of a class using a single form for a different class
As a bit of background, I am making a system where registered users can post bounties for artwork. They say what they want and post it as a bounty to be publicly visible. Users may also be registered ...
1
vote
1answer
59 views
Ruby on Rails: Issue with has_many association and form checkboxes
I am using a form to add categories to a user. In my form I have many checkboxes that correspond to available categories. A user can check and uncheck the categories he wants at anytime.
class User ...
1
vote
1answer
96 views
Ruby on Rails 3.2.13 - How Do I Reference Fields in fields_for?
I have a Modality model with a related model ModalityItem. Modality has many :modality_items and ModalityItem belongs to :modality. One of the fields I want to display is a name field from ...
0
votes
1answer
83 views
Rails: form_for and radio buttons
I have the following in my form_for
<div class="multiple_students">
<%= f.label :multiple_classes, "Do you teach multiple classes?" %>
<%= f.radio_button ...
1
vote
1answer
67 views
form_for params
I need to submit a form to an external URL, so I have this:
form_for(@task, :url => "https://www.external.com/Submit") do |f|)
<%= f.hidden_field :assignmentId, :value => @assignment ...
0
votes
2answers
87 views
How to delete a join table association between two models?
I have the following setup of models and controllers:
Models:
class Company < ActiveRecord::Base
has_many :follow_companies, dependent: :destroy
has_many :followers, through: ...
0
votes
1answer
68 views
How to paginate an array in a html form having submit button using will_paginate in rails
I have a view page .html.erb in rails which displays the list of attachments (pulled from array) uploaded by a particular user. This view page has a Delete button at the end of the page (which deletes ...
0
votes
1answer
41 views
How do I set two different actions from a rails form?
I have a rails form that creates (and updates) materials. Obviously, by default, when the user is logged in and the materials is retrieved the form renders with the update action. However, I want to ...
0
votes
1answer
33 views
nested resources with form_for losing first id
This is a strange error that has really got me bugged. First, some background.
I have the following nested resources in my config/routes.rb:
scope :requirements => { :protocol => 'https' } do
...
0
votes
1answer
53 views
Unable to access validation errors using bootstrap_forms gem
Unable to display validation errors using the gem 'bootstrap_forms', '~> 2.0.0' (http://github.com/potenza/bootstrap_form).
models/client.rb
class Client < ActiveRecord::Base
attr_accessible ...
1
vote
1answer
74 views
Twice nested attributes form_for
I am looking for a solution for a twice nested attributes form. The team has several player and each player has a few rounds. I added accept_nested_attributes in the models.
This way did not worked ...
0
votes
1answer
56 views
How do i handle checkboxes in a rails has_many?
Ok so i have data model
class Application < ActiveRecord::Base
has_many :schedules
class Schedule < ActiveRecord::Base
belongs_to :application
belongs_to :time_slot
attr_accessible ...
0
votes
1answer
108 views
Form submit stops working in Rails 3 app with inclusion of Bootstrap
I have a simple_form in a Rails 3 application that works fine if I do not include Bootstrap, but when I add bootstrap, the submit button seems to do nothing. The only thing showing up in the Firebug ...
0
votes
2answers
86 views
Keep params after render Ruby on Rails
I have a Project that belongs to User. In my user view I have a link to add a new project, with the parameter for the user I want to add the project to.
<%= link_to 'Add new project', :controller ...



