0
votes
2answers
13 views

ruby on rails: ensure user must enter value before submittal

I have a form in rails using <%= form_for... %> and I was wondering what do I need to do so that the user has to submit values before submitting? I have input field, radio buttons, and checkbox. ...
0
votes
1answer
26 views

Rails form submission error

I currently have a form for when a user submits a user with a comment as such: <%= form_form @user => <%= f.fields_for :comments do |comment_form| %> <%= comment_form.text_area ...
0
votes
1answer
14 views

Is it possible to open two different forms in page?

I have 2 nested forms such that Estates has Revenue and Estates has Expense, and current form signature looks like for expense "<%= form_for [@estate,@expense] do |f| %>" and for revenue "<%= ...
0
votes
1answer
15 views

undefined method `collection_check_boxes'

I'm trying to make an invoicing app. The form to create an invoice should include a collection of check boxes so the user can choose which lessons to invoice, but I'm getting this error: undefined ...
0
votes
0answers
35 views

Passing RoR app user registration through JavaScript

I am trying to give user the ability to register for my site via a page other than the registration page. I'm doing this through some simple JQuery that shows the form. The code is working perfectly ...
0
votes
0answers
22 views

Fieldsets automatically generated from previous fieldset entries

I want to make a form such that the inputs displayed in one fieldset depend on a selection made in a previous fieldset. More specifically: I have a form that generates an invoice for a freelance ...
1
vote
1answer
35 views

Send form in email in ruby on rails application

I want to send a form to users so that they can fill it in the email and just hit submit from there only. I just changed the form submission url ie: <%= simple_form_for @submission, :url => ...
0
votes
1answer
45 views

Create a select from existing or create new in a form Rails 3

So I'm trying to set a name attribute of organizations and create a new organization or choose from a previously existing organization from the same form. I've tried to follow Ryan Bates' railscast ...
1
vote
3answers
38 views

How should I handle edit and update action when I use Form Object?

I have following form object to managing complicated nested form. Form = simple_form_for(@profile_form, :url => profiles_path) do |f| ... Routes resources :profiles Controller class ...
0
votes
1answer
47 views

How to initialize varible only if it is set up in controller?

How to initialize varible only if it is set up in controller???
0
votes
1answer
44 views

Rails: How to make a form post to another controller action

I know you are usually supposed to use the linking between new/create and edit/update in rails, but I have a case where I need something else. Is there anyway I can achieve this same connection? I ...
0
votes
2answers
57 views

Change parameters in controller

I create an form and i want my description for exemple has a text add by me , not by the user who send the form. But i dont know how i can pass my parameters in the controller . My form view <%= ...
1
vote
1answer
37 views

Rails: form_for active record object complaining about no index path

I have a survey model that has no index page. I only want an edit view for this model, but it seems like rails wont let me do that. It complains undefined method surveys_path when I try to use ...
1
vote
2answers
42 views

Rails nested form on HABTM: how to prevent dublicates?

I have simple app with 3 tables in DB and 'many-to-many' relationships. # Model Employee class Employee < ActiveRecord::Base has_and_belongs_to_many :phonenumbers ...
0
votes
2answers
28 views

Rails and jQuery: How to select input from a specific form

I have a rails app with a job model, and on the index page, each job has a form. I need to be able to access the specific form everytime the submit button is selected, so I can take the input for the ...
0
votes
0answers
23 views

Form field naming multiple fields with Paperclip

I have asked a similar question in the past but I believe this is a more refined one. I have an image upload form utilizing the Paperclip gem in Rails 3.2.13. For single image upload it works fine but ...
1
vote
1answer
31 views

Keeping form data in Rails

I have an HTML form in Rails. Sometimes when the user submit data, my server will reject it because the data is not appropriate (say, the user types a non-number in a field where there's supposed to ...
0
votes
1answer
52 views

Namespaced routes using nested resources with accepts_nested_attributes_for on has_one association for forms

Trying to get back into Rails and learn by working on a side project and I'm having some difficulties getting my form to save. Any help would be greatly appreciated. First issue: Followed the example ...
0
votes
1answer
12 views

What happens to a form from the time it's submitted in the view to before the data returns back to the controller?

This question has come up multiple times during interviews and I'm having trouble finding the answer on google. I think I'm using the wrong terminology when searching.
1
vote
3answers
37 views

Rails form builder - how to improve performance

I have a page that has several forms and the load time of the form and fields seems like it is way slower than it should be. My form looks something like this -@leaders = Leader.select("id, ...
0
votes
1answer
56 views

How to remove duplicate entries to get unique elements when using collection_select? Getting error - any idea why?

I am trying to do something somewhat common - generate an array of unique items in a list on a form when using collection_select. A User has many payments, and a Payment belongs_to user. I am using ...
0
votes
0answers
54 views

Saving new records based on older instances in Rails

I have a Lesson model and a Revision model. When a lesson is created its first revision is created (the models have a has_many through: relation). Users should be able to create new revisions by ...
2
votes
1answer
76 views

Using collection_select and getting an unexpected error from sqlite3 - anyone know why?

I am relatively new to Ruby on Rails and am having an issue using collection_select and getting my new form to submit successfully. Some background on my code: I have a User model and a Payment ...
0
votes
2answers
31 views

How do I pass the Value from a Dropdown Form through a Link in Rails?

I have a dropdown select on my page called language, which is in a form with other elements. When the form is submitted normally (which submits everything), I can access the value of the dropdown with ...
0
votes
1answer
21 views

yet another undefined method `model_name' for Project:Class

I am new to Rails and what I am trying to do is creating a simple client for Youtube. I am using Youtube_it gem to retrieve all the videos in one of my playlists and I am using the code: controller: ...
0
votes
1answer
52 views

Show value if exists within text_field_tag

I have a form using form_tag that allows users to input a prediction for a football match, the fixtures are taken from a separate model..What i would like to do is once they have submitted their ...
1
vote
1answer
38 views

Too many forms on a page - is it an issue

I am looking for the practice which is most advisable in terms of coding practice I have a comment system which for each comment, you can reply to. This leads me to several options on implementing ...
0
votes
1answer
31 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
0answers
23 views

rails post form issue when using https

Following is my code, I am trying to post a form to a https site. I've googled many times with no luck. post_params = { name: "Peter", age: "26", school: ...
0
votes
1answer
22 views

How to control :selected for collection_select?

Currently if you call @team.user_ids it returns "1,3,7" as opposed to [1,3,7]. I need it to be like that for other reasons, but it's breaking the front-end collection_select. I've tested and it works ...
1
vote
0answers
22 views

Rails 3.2.11 select box “selected” issue

This is perhaps the strangest issue I've ever run across using Rails: In the process of creating a form select that displays values from 1 - 100% (but saves in the db as fractional numbers) like so ...
1
vote
2answers
52 views

Ruby on rails forms: How to put text into an input field that disappears on click

I want to create a form that does not have a label, and instead puts the directions inside the actual input text field. I also want the directions to disappear when you click the text field. Here is ...
0
votes
0answers
28 views

Appending to URL when submitting a form containing select/search fields

I am trying to sort/search a page using sunspot. However , I am not able to append the params . Please find the code below for clarification :- In controller - @search = Product.solr_search do ...
0
votes
1answer
103 views

Rails remote form submit not working

I'm trying to submit a form via ajax/js. When I set :remote => true it still submits via html. <%= form_for(@message), :remote => true, do |f| %> <%= f.label :Note_To_Doctor %> ...
0
votes
0answers
23 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
2answers
114 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, ...
1
vote
1answer
44 views

Wicked Rails Gem Help Wiring Up

I want to do a multi-step form for taking in new information. One page I want to collect name/contact info, the next page I want to collect medical history, the third page demographic information. ...
1
vote
1answer
45 views

Rails time duration in database and form

I need to store a time duration in database and I'm not sure how to go about this. I've added a 'duration' column to my table of the type time but I don't know how to let the user fill in what he ...
0
votes
0answers
55 views

Rails Associations Formtastic Checkbox

I just watched http://railscasts.com/episodes/185-formtastic-part-2 and after implementing my code, the form and everything else worked perfectly, except that when i create the form, with the checkbox ...
0
votes
1answer
51 views

With Rails form builder, is there a way to have a checked check box equal a false value?

This is for using the f.check_box method in a Rails form_for block. The checkbox represents a bool attribute on the model. But, I want checked to equal false and unchecked to equal true. Checked ...
0
votes
0answers
31 views

Render form partial dynamically for single model

I have on table "Questions" with fields id:integer, question_description:long text, is_paid_question:boolean, image_link:string, topic_id:integer(Foreign key). My requirement is that - User can add ...
0
votes
1answer
64 views

select_tag rails, show only particular list

I have this model for company class Company < ActiveRecord::Base attr_accessible :description, :name, :type belongs_to :type, :class_name => "CompanyType", :foreign_key => ...
0
votes
0answers
61 views

Multi-step form in rails with logic

I need to build a form in my rails 911 app which will do the following: 1.) Be a multi-step form and will remember the state of the information input/chosen 2.) Will display information from each ...
0
votes
2answers
64 views

Rails 3 nested resources - form partial only works for either new or edit, not both

I have nested resources, and I'm trying to create form partials for each individual resource to use for the new and edit action of each. routes.rb resources :accounts, shallow: true, :except => ...
0
votes
1answer
50 views

How to create dropdown list values depending on previous input?

I need some help on rails forms. I currently have: <div class="field"> <%= f.label :student_id %> <%= f.collection_select(:student_id, Student.active.order('first_name'), :id, ...
0
votes
0answers
32 views

Form submission fails via Ajax due to parsing error, but passes during normal POST

I'm quite puzzled as to why the ajax form submission isn't working. Can you guys have a look and tell me if you can spot something wrong. WORKING <form id="advancedSearchForm" ...
0
votes
1answer
56 views

POST/PUT not working with partial in Rails form

I am using a single form for new and edit actions in my controller. edit.html.erb <%= form_for @user, :url => edit_users_path(@user) do |f| %> <%= render :partial => 'form', ...
0
votes
1answer
50 views

Pagination with POST

I have an advanced search form which I switched from method=GET to method=POST as the url became too long for the browser. Now I was using a gem (will_pagination) for pagination. The problem is that ...
0
votes
1answer
28 views

In Rails 3 how does the simple_form_for method know whether to include the params[:id] in the action attribute?

I'm new to rails, and I'm trying to figure out how to make the [action] attribute on a form dynamic so that I can reuse the form markup. In MVC.net it's easy as you usually specify the :controller ...
0
votes
2answers
179 views

undefined method `values_at' using nested_form gem

I am getting the error ActionView::Template::Error (undefined method `values_at' for nil:NilClass): when using nested_form gem Here is my code Models class Poll < ActiveRecord::Base ...

1 2 3 4 5 15