Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
138 views

rails partial's layouts with named yield - why is yield block never used?

I have a partial, with a layout: <%= render :partial => 'home/mobile/home', :layout => 'home/mobile/page', :locals => {:page => 'abc2'}%> The layout (page.html.erb) has yields for ...
3
votes
1answer
1k views

Rails global content_for

Example: I have 2 partial _map.haml and _bigmap.haml. :: _map.haml - content_for :map do %script{:type => "text/javascript", :src => "http://maps.google.com/maps/api/js?sensor=true"} ... ...
2
votes
1answer
107 views

Issue with Rails Content_for / yield - duplicated content

I'm trying to load some javascript in my application page using a named yield block, but the code is duplicated because of a generic yield that load my view pages. something like that: -----Code ...
2
votes
3answers
109 views

How could you create a “content_for” equivalent in PHP?

I've been working on a small page in PHP, one that doesn't need the power of a full-fledged framework behind it. One thing that I'm really missing from previous work in Ruby-on-Rails is the ability to ...
1
vote
1answer
81 views

HAML Having Multiple Lines While Using content_for, for JavaScript

I am trying to output some inline js on a page. I don't really want to add it to any JS file since it is so aribtrary and one time use. That being said, I am using haml and also trying to use ...
1
vote
3answers
460 views

Multiple content_for on the same page

I have large block of HTML in my application that I would like to move into a shared template and then use content_for with yields to insert the necessary content. However, if I use it more than once ...
1
vote
2answers
3k views

Including inline javascript using content_for in rails

I am using content_for and yeild to inject javascript files into the bottom of my layout but am wondering what the best practice is for including inline javascript. Specifically I'm wondering where ...
0
votes
1answer
85 views

Trying to change content_for into a partial and getting “undefined local variable or method resource …”

I currently have my devise login form set up like this. Instead of content_for, I would like to just put this content in a partial (named views/devise/sessions/_new.html.erb instead of ...
0
votes
0answers
83 views

Rendering different partial in a same Shared View

I have a popover in my application. I have written code for popover in shared/_popover.rhmtl <div class='popup'> <div class='popup-title'> <a class='popup-close' ...
0
votes
1answer
252 views

Ruby on Rails's content_for will do an automatic HTML escape?

Using Rails 3.0.6, I found that in the view, if I do a content_for :food_name, "Macaroni & Cheese" Then when I get it back using content_for(:food_name), then the & will be made into ...
0
votes
1answer
68 views

rails 2.3.7 issues with content_for

I have an application where I want to render the menu using "content_for" as well as a left navigation bar and then the rest be the body of my document. However, in my left bar and menu regions, the ...
0
votes
2answers
645 views

Rails yield - content_for problem

I have the following requirement. Ex: There is a transaction table where it has columns say, transaction_name and amount. I want to loop through the transactions and display their details ...
0
votes
1answer
383 views

Ruby on Rails: Yield content_for Display Issues

Using 2.3.8 of rails. In the view template I have this type of code <%content_for :sidebar do %> <h2>Sidebar</h2> <p><%=link_to "somewhere", ...
0
votes
1answer
177 views

How to add to a javascript var array using content_for in Ruby on Rails?

Right now in my code I'm calling content_for like... <% content_for :javascript do -%> <%= "var boxplot_data=#{@survey.boxplot_answers.to_json};" %> <% end -%> Rather then ...
0
votes
1answer
243 views

content_for Inside Formbuilder

I've got a formbuilder field specifically for doing DateTime using jQuery. What I'd like to do is have the helper able to push content out to my < head > through content_for. Any ideas? Thanks, ...