Tagged Questions

0
votes
1answer
31 views

RoR: Check boxes in form_for for has_many, :through with a Join model

Once again, I have my form_for for my Order model, which has_many :services, :through => :requests. Here's the layout of how I have my relationships mapped: __________ …
0
votes
1answer
31 views

Helper method that encapsulates two form_for blocks

How do you build a helper method that looks like -confirmation_for [@post, @comment] do |f| = f.confirm "Post" %p html here... = f.edit "Edit" and encapsulates two form …
0
votes
1answer
76 views

STI and form_for problem

I am using Single Table Inheritance for managing different types of projects. Models: class Project < ActiveRecord::Base end class SiteDesign < Project end class TechDesi …
0
votes
2answers
102 views

form_for tag for a resource with two different controllers and RESTful routing

I have a Rails app with a "Route" resource, and a "Route" controller (not to be confused w/ Rails routes). I've set it up so that the site admins (and only the admins) can manage …
0
votes
1answer
197 views

ruby on rails / routing-filter / form_for changes html

Hi, this question is related to routing-filter. I have this in my view: <% form_for :post, :url => {:action => "show"} do |f| %> which translates in the browser to …
1
vote
1answer
1k views

Rails form_tag form writing - with non-active record model

Hey Rails People, I'm somewhat of a Rails newbie. I'm writing a couchrest-rails app, so am not using activerecord for this model. I just figured out that that means that form_ …
1
vote
2answers
637 views

Ruby on rails model and controllers inside of different namespaces

OK. This is insane. I'm new to RoR and I really want to get into it as everything about it that I have seen so far makes it more appealing to the type of work that I do. However, …
0
votes
1answer
388 views

form_remote_for in rails

HI I tried using a javascript function call in the submit tag of a form_remote_for but it is not able to find the function im calling. if i call the same function from form_remote_ …
1
vote
2answers
160 views

Rails, One Model, Many Screens

I have a model with many fields (nearly 40). The client wants the fields divided among multiple screens. The model also has a few has_manys that should look like they are part of t …
4
votes
2answers
1k views

Attaching onClick event to Rails’s link_to_function

How do I attach an onclick event to a link_to_function such that clicking on the event refreshes an element on the page (using partials)? When the user clicks the generated link, …
0
votes
2answers
272 views

RESTful way to use form_for?

I am attempting to use form_for to implement a search form that works with a table-less Search model I created. The search form keeps triggering the 'index' action. I assume I shou …
0
votes
2answers
416 views

Rails ActiveRecord Update question

I have a user model which has multiple addresses. Now for my application in rails, address is not mandatory. So, if someone wants to create a user and enter the address after the u …