0
votes
2answers
141 views

Rails Haml form url parameter - how to make html form use the desired rails route

With the HAML code: %form{:action => "activate_foobar", :method => :post, :controller => "foobar", :url => activate_foobar_foobar_index_path} %input{:type => "submit", :value => ...
0
votes
0answers
90 views

Paste html form data into url

Assuming i have resource with 2 methods :show and :index. I need :index contain simple form with text field and submit button, when user insert data into text field, this data must be inserted into ...
0
votes
1answer
289 views

sending json data from rails form

I have a rails form, which has some fields. Now i want to send values of these fields, converted to json to some url I can traverse through each element of form, convert it into json(using ...
0
votes
2answers
277 views

Is there a good resource for beautiful HTML forms? [closed]

I am working in rails, and a looking for some resources to design visually pleasing HTML forms. I can write the CSS, so even examples would be great. Any recommendations?
0
votes
2answers
74 views

Rails 3 remote form succeeding without calling controller action

I have a page with multiple forms created like this <% arr.each do |obj| %> <%= form_tag('/addjobs', :class => "class", :method => "post", :remote => true) do %> # ...
1
vote
2answers
134 views

How can i make multiple model associations through an html form?

I would like to create pages for Discussions on a website, and on those discussion pages have users be able to write posts. The posts need to belong to the discussion and a user, and the discussion to ...
1
vote
0answers
60 views

Sent form isn't complete. Some fields are near by

When I am sending new form, some fields aren't put in final map - they are just near by. Have no idea why is it happening... View - sending <%= form_for :review, :url => { :action => "show" ...
3
votes
2answers
594 views

RoR: POST to a page using raw form data. How?

Is there a ruby method to POST form data encoded in "x-www-form-urlencoded" as specified here? http://www.w3.org/MarkUp/html-spec/html-spec_8.html I am aware of Net::HTTP.post_form, but because I ...
1
vote
2answers
1k views

HTTP Post with Multiple Checkboxes (RoR)

I'm attempting to write a RoR controller that will post data to a page on behalf of a preexisting form. This form consists of a long list of checkboxes. I use a hash that represents the name => value ...
6
votes
2answers
1k views

Rails select_date form name

As much as I love rails, I've always hated dealing with dates in an html form...especially when the date isn't an object's property. The select_date helper is nice, but it always generates this: ...
1
vote
1answer
298 views

Form with dynamic number of items

Just thinking about the best way to build an Order form that would (from user-perspective): Allow adding multiple items. Each item has Name, Job Type drop-down and File upload. User can add or ...