0
votes
1answer
9 views

Can't convert ActionDispatch::Http::UploadedFile into String whilst uploading a file in rails

I've created a form to upload an image for a banner, this is the code in my controller: def banner_editprocess uploaded_io = params[:banner] if uploaded_io != nil && uploaded_io != "" ...
0
votes
1answer
27 views

Checkbox not staying checked in rails form

I have this in part of my form_tag %input{ :type => "checkbox", :name => "form", :value => "#{@t.form}"} It saves to the database as 1 when i check it the first time, but then if i ...
0
votes
1answer
24 views

HAML: Content into %input{:type => “Submit”} tag

Feels pretty lame. This: %input{:type => "Submit"} %a.btn %i.icon-search.icon-white generates this : <input type="Submit"> <a ...
0
votes
1answer
45 views

Rails f.submit: how to add html attribute?

I'm having trouble adding a particular html attribute to a Rails form submit. = form_for :model do |f| ... = f.submit 'Submit', tabindex: '3' The tabindex property isn't showing up in the form. ...
0
votes
1answer
37 views

Multiple input field for multiple forms for multiple users

I am trying to create a small accounting system. Here I have some products. Each month I want to write down how many of each product each user bought. Lets say I have 3 users and 4 products. I want a ...
1
vote
1answer
94 views

Rails: Form with conditional required field

I'm relatively new to RoR. I got the following source in haml = form.text_field :country, 'Country' = form.text_field :state, 'State', :placeholder => 'optional' but the :state filed is not ...
0
votes
1answer
125 views

Prevent rails form submission on ng-invalid

I have a form, generated through rails helpers, that has some AngularJS on it. = form_for some_models do |f| %fieldset.form-horizontal %div.some-class #And so on and so forth ...
0
votes
1answer
139 views

How to combine the default value, null value and the value of item

I have an argument year in my model. This parameter defaults to 0, if the parameter is not in a form that is inserted into the database 0 (not working with nil). A text_field is rendered when ...
0
votes
2answers
63 views

Why aren't my “has_many :through” checkboxes updating my third model?

I have 3x models: class Heuristic < ActiveRecord::Base has_many :footnotes has_many :references, :through => :footnotes end class Reference < ActiveRecord::Base has_many :footnotes ...
0
votes
1answer
112 views

Toggle a set of inputs on a form in Rails

I have a form in a Rails application with an invite code and a block of credit card information. I'd like to be able to toggle between the two on the same page. Either the user provides an invite ...
2
votes
2answers
2k views

Rails form (select/option) - how to mark selected option with HAML?

What's the quickest and most elegant way to mark currently selected option value in the form in HAML? %form{:action => '', :method => 'get'} %select{:name => 'param_name'} ...
0
votes
1answer
121 views

Rails, MongoMapper nested Array in HAML form trouble

I'm getting undefined method `Carrots' for # (referencing ln#18) When trying to edit with the below form: = form_for @harvest do |f| - if @harvest.errors.any? #error_explanation ...
1
vote
1answer
103 views

can't get text input to work on my simple Sinatra text numbers game

I have made a simple game in Ruby to help learn it. Now, I've been trying to implement it in Sinatra, however I cannot get the text input to interact with the 'while' loop. Can anyone help me see ...
0
votes
1answer
132 views

Make a fields_for block conditional

I have a User Model and an Instructor Model. There is a one-to-one relationship between user and instructor. And some users will be instructors and some will not. As such I have a registration form ...
0
votes
1answer
128 views

Rails: How to render repetitive form block?

In order to not repeat myself, I would like to create a function that render a form block (text field or text area) in a specific way. I want a result like this one (using Haml, and ...
0
votes
1answer
3k views

rails haml form post

I'm trying to make simple form, but it's working not so fine. This is current form code: %form{ :controller => 'tool', :action => 'activation', :method => 'post' } %table{ :border => 0, ...
2
votes
2answers
2k views

Rails & Haml: cant get a form to work

I have a form: %form{:action:method => "post"} %fieldset %label{:for => "title"} Title: %input{:name => "title", :type => "text", :value => ""}/ %label{:for ...
5
votes
2answers
360 views

Use JS to change <form> from remote to non-remote in Rails 3, HAML

The problem is that i have a remote form that, based on condition, id like to convert to a non-remote form (using UJS), and then submit. note the form has a file upload. Here's the details: I have ...
0
votes
2answers
262 views

unable to display validation error from a partial form

im not able to display the validation error, even though it is validating the form. In my partial form if @post.errors.any? seems to be the problem, the @post returns a false for error and so no ...
1
vote
1answer
67 views

rails forms 101

here's my controller: class TalentController < ApplicationController def index end def new @talent = Talent.new end def create @talent.update_attributes!(params) end end ...
1
vote
1answer
2k views

syntax error, unexpected keyword_ensure, expecting $end, in HAML using form_tag

Once I replaced "form{:action => "/comments"}" with a "form_tag('/comments')" in the following code: =form_tag('/comments') %fieldset %input.comment_input{ :name => "comment[comment]", ...
1
vote
2answers
378 views

In Rails 3.1 How do I create a select list for a form that has a belongs_to association?

GIST is here: https://gist.github.com/1553371 These are the models I have: class Character < ActiveRecord::Base has_many :weapons end class Weapon < ActiveRecord::Base belongs_to ...
2
votes
3answers
1k views

How to use a default value for locals in HAML?

I have a HAML template that I want to render and optionally provide a local variable to, here called post, so that it either uses the provided variable as the value of an element attribute, or falls ...
2
votes
2answers
76 views

What's the best way to edit many objects of a single class in one Rails form?

I'm working on a Rails form that will allow the user to edit the attributes of many objects of a class with a single submission. My initial instinct was to create an outer form_for block and then ...
1
vote
0answers
358 views

In Rails 3 with haml-rails, why would =text_field :project… set params and not %input{:name => “project”…}?

If I do the following line in haml %input#project_images{:name => "project[project_images]", :type=>'text', :value => @project_images.join(',') }/ My projects_controller is returns ...
0
votes
2answers
350 views

a difference between an .erb and .haml in the form data

I have an .erb script, which works: <% form_for :ticket do |f| %> <% if @ticket.errors.any? %> <div id="error_explanation"> <h2><%= pluralize(@ticket.errors.count, "error") ...
0
votes
1answer
174 views

form with errors massage in HAML rails3

I `m change .erb files in .haml. I have such a form: <% form_for :ticket do |f| %> <% if @ticket.errors.any? %> <div id="error_explanation"> <h2><%= ...
1
vote
1answer
796 views

HAML Forms being weird

-form_tag(search_path, :method => :get) = label_tag("Place") = text_field_tag("place", nil, :id => "place") = text_field_tag("near", nil, :id => "near") = submit_tag("Search", :id ...
1
vote
1answer
544 views

mailing list using JQuery, Sinatra, HAML fails with “undefined” email address

Somehow, a simple form I have to sign up for a mailing list (which adds an email to a Google Apps Group, using gdatav2rubyclientlib) seems to fail occasionally. The form is submitted via POST through ...
7
votes
2answers
6k views

Rails 3: undefined method `remote_form_for'

I have a fairly simple Rails remote form in HAML in a partial under shared/users: - remote_form_for :user, :url => { :controller => "users", :action => "create" } do |f| .field = ...
4
votes
2answers
2k views

=button_to does not generates form if already in an other form

Using the same form partial in both create and edit in my case new and preview. partial looks somewhat like this (I use HAML) =form_tag ({:action => params[:action]}, :multipart => true) ...
0
votes
1answer
134 views

Rails duplicating view

I'm trying to display all @user.notes on my index action of the user_controller, and provide a form below to add a new note, inline. Pretty simple code that I've gleaned from a few tutorials, but ...