Tagged Questions

5
votes
2answers
790 views

Should you only use local variables in a partial?

Using local variables seems advisable in a partial that could be used application-wide to avoid dependencies across the application. But within a single controller it seems acceptable to reference ...
2
votes
2answers
2k views

Rails partial locals not persisting when sent to another partial as its own local

I render a partial like so: <%= render :partial => 'widgets/some_partial, :locals => {:foo => 'bar'} %> So inside of _some_partial.html.erb I render two more partials like so: <% ...
1
vote
1answer
150 views

Ruby Rails RSpec Local Variables

I use AJAX to filter a list of responses in my Index action and I am unsure how to test this. index.html.erb: <h1>Listing traits</h1> <%= render "partials/filter" %> <%= link_to ...
1
vote
1answer
103 views

conflict with instance variables and local variables in partials

In one view I use render :partial => "form_linktype_#{@linkjob.link_type}", :locals => {:linkjob => @linkjob } where @linkjob is an instance variable of type Linktype In another view I ...
1
vote
1answer
49 views

RailsTutorial.org book design question

Hi I worked through Michael Hartl's RAILSTUTORIAL book and I have a question about how he builds the user's show page. The page is supposed to list all the posts a user has made. UsersController ...
0
votes
2answers
21 views

handle missing local variable in Rails view

I have a form which is shared among some controllers. Sometimes I pass in isbn argument, sometimes not. = form_for book do |f| - if isbn.present? = f.hidden_field :virtual_isbn_id, :value ...
0
votes
1answer
94 views

Michael Hart's Rails Tutorial: undefined local variable or method 'id'

I am at the end of section 9.4.3, after changing the header links when you are signed in and signed out. When I try to load any page I receive the same error: Showing ...
0
votes
1answer
235 views

Is it possible to pass local variables like ':locals => { :f => f }' using RJS?

In my 'ROOT_RAILS/views/accounts/new.html.erb' I have <% form_for(@account, :remote => true, :url => accounts_path) do |f| %> <div class="new_account_form"> ... ...
0
votes
2answers
206 views

Using variables in an array passed to a def - Rails

I'm using the Google charts API to generate a pie chart in my Rails application. However, I'm having a problem passing local variables to the def in the helper. The def takes a 2D array of [label, ...