Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
4answers
3k views

optional local variables in rails partial templates: how do I get out of the (defined? foo) mess?

I've been a bad kid and used the following syntax in my partial templates to set default values for local variables if a value wasn't explicitly defined in the :locals hash when rendering the partial ...
11
votes
6answers
2k views

When to use Helpers instead of Partials

In a rails application, in which situation would you use a partial and when would you use a helper? I find both very similar, since they represent markup fragments. Is there a convention around this? ...
9
votes
5answers
7k views

Devise Custom Routes and Login Pages

I'm trying to get Custom Routes working in my Rails application (Ruby 1.9.2 with Rails 3). This is my config/routes.rb file match '/dashboard' => 'home#dashboard', :as => 'user_root' ...
5
votes
1answer
1k views

rails html helper

I'm trying to figure out the cleanest way to generate a bit of html AND nest content inside it. Using HAML. Basically I want to do something like: = block_large This is some nested content And ...
4
votes
2answers
975 views

Using javascript code in Jade views - if(variable) shows undefined instead of passing

So this is a recurring issue I have and haven't found another example on SO so here goes: When rendering Jade templates I get 'variableName' undefined even when using -if(variableName) in the ...
4
votes
10answers
4k views

CodeIgniter or PHP Equivalent of Rails Partials and Templates

In CodeIgniter, or core PHP; is there an equivalent of Rails's view partials and templates? A partial would let me render another view fragment inside my view. I could have a common navbar.php view ...
3
votes
1answer
75 views

Nodejs EJS partials with scripts in the head

I'm working with EJS to render and server HTML pages from a Nodejs server. Some of the partials I include have scripts and stylesheets referenced in the head, but this causes the client to make ...
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
70 views

One out of ten partials suddenly becomes slow (random)

When I look at my log-file, I get the following lines: ... Rendered partials/_something.html.erb (11.8ms) Rendered partials/_something.html.erb (123.8ms) Rendered partials/_something.html.erb (8.2ms) ...
3
votes
1answer
625 views

When do I use View Models, Partials, Templates and handle child bindings with MVC 3

new to mvc3, i have a few questions, would appreciate if someone could answer/provide links: When should I use View Models? Is it not recommended to use the domain? I find that my view models are ...
3
votes
1answer
155 views

How to inject HTML inside of a partial (using HAML)

I have a partial that represents a header that I want to place on some of my pages. Each page, though, has a different title. I want to 'inject' this title into the partial. Here's what I'm trying to ...
3
votes
2answers
315 views

Is it possible to import a whole directory in sass using @import?

I am modularizing my stylesheets with SASS partials like so: @import partials/header @import partials/viewport @import partials/footer @import partials/forms @import partials/list_container @import ...
3
votes
2answers
492 views

How can I automatically render partials using markdown in Rails 3?

I want to have some of my partials as markdown snippets. What is the easiest way to render them using the standard rails erb templating? Ideally, I'd like to do something like this: If I have a ...
3
votes
2answers
532 views

How to render a Partial from a Model in Rails 2.3.5

I have a Rails 2.3.5 application and Im trying to render several Partials from within a Model (i know, i know -- im not supposed to). The reason im doing this is im integrating a Comet server (APE) ...
3
votes
2answers
767 views

Two-part Rails layouts

My web pages consist of two parts, let's say top and bottom (except header and footer -- those are consistent across pages). What is the best practice to dynamically generate those parts depending on ...
2
votes
1answer
57 views

Ruby on Rails: inserting a partial in different language (locale)

There is a view which is calling a partial in my multilingual application: <%= render :partial => 'shared/order', :object => @order %> the default language is Russian and ...
2
votes
4answers
46 views

What's a tight way to reference a variable that may not be defined in a partial?

I have a few local variables in my partials which may or may not be passed by the template that renders them, for instance: on_question_page. If I'm on the page I pass it as true but elsewhere I skip ...
2
votes
3answers
220 views

Trouble inserting a rails partial using JQuery

The following line of code: $("#comments_<%=@comment.post.id %>").append("<%= escape_javascript(render :partial => 'posts/comment', :locals => { :comment => @comment }) %>"); ...
2
votes
1answer
254 views

How to efficiently implement clientside javascript templating partials?

I'd like to build my own, but I'm not sure about the best way to do it. A partial is a template that is only a part of another bigger template and which can be inserted into multiple other templates ...
2
votes
1answer
825 views

Rails 3 slow partial rendering

First code: # matches/index.html.haml %ul.match_list - @matches.each do |match| %li =render match # matches/_match.html.haml %li =match.id Completed 200 OK in 665ms (Views: 496.3ms | ...
2
votes
1answer
844 views

ActionView::MissingTemplate when trying out Devise Login Items

Now, I have to admit, I'm totally new to Ruby on Rails and don't quite understand every concept. I have installed Devise for authentication and followed this guide to include sign up and log in links ...
2
votes
2answers
639 views

Modular Zend Framework with a base of partials

Currently I'm finding I have to keep duplicating partials for different modules. I would like to have a case directory for all partials to be accessed. Does anyone have a good way of doing this? ...
2
votes
2answers
522 views

Managing CSS in large Rails projects

What are some good methods for handling CSS in large Rails projects? Ideally I'd like to be able to include CSS or a link to a CSS file per partial. I've played around with using content_for and ...
2
votes
2answers
1k views

Missing template after link_to_remote

I'm using link_to_remote to update a partial on my page. The problem is that Rails isn't finding my partial. I am specifying the full path to my partial(an html.erb file) in the controller method: ...
2
votes
3answers
2k views

Rails — How to save HTML output of a HAML partial as a string to send to an external service?

Hey guys, first post here, hope you can help me out. We're generating a newsletter automatically every 24 hours using a rake task. There's a section at the top of the newsletter where an admin can ...
2
votes
2answers
259 views

Are variables defined locally in a partial also visible to the invoking erb template?

If I declare local variables in a partial and then render the partial from another erb template, will the latter also have accces to those local variables?
2
votes
2answers
262 views

How to keep track of information over several calls to render :partial

I am using attribute_fu to render a nice block of rows for a particular table. <%= f.render_associated_form(@foo.bars, :new => 5) %> I would like to have the bar partial have some notion ...
2
votes
1answer
2k views

AJAX, Rails, and dynamic loading of forms

I have a rails app that has picked up a bit of traction, but I have a serious headache to deal with. It's a basic sort of asset manager application - users upload their photos, .pdfs, videos, etc., ...
1
vote
1answer
60 views

How can I find the path to an include in Symfony2?

I've looked thoroughly over Symfony related questions on this site but can't find the answer I need. I'm using Symfony 2.0.9 with PHP 5.3.6 and my file structure looks like this: src/ Blog/ ...
1
vote
0answers
207 views

Cannot render coffeescript partial inside coffeescript

I want to make a general controller that can be called after the page was loaded (with AJAX) and update different stuff on the page depending on which controller called it. The purpose is to allow ...
1
vote
1answer
35 views

Trouble with locals and partials with Rails

I have the following in my js.erb file: $('#menu').after($("<%=escape_javascript(render 'boards/customize', :board => @board, :templates => @templates, :types => @types)%>") So I ...
1
vote
1answer
36 views

Rails not rendering a partial on webpage

total newbie trying to work through the rails tutorial on lynda.com The code is really short and exactly the way it is on the video, yet I can't get my page to render the partial. When I pull run it ...
1
vote
1answer
165 views

Mustache JS and merging templates

for some reason I can't get my head around mustache templating and merging two templates together... var template = '<div ...
1
vote
1answer
144 views

Rendering content inside a partial via =yield

I'm creating an application with ruby on rails where I have an items/_item.html.erb. Inside the partial is a yield statement so i can add extra content as needed. In this case, I want to add a ...
1
vote
1answer
75 views

How can I use will_paginate on a collection of partials away from an index page?

I currently have a users page which displays all the reviews that user has written. Each review is displayed as a partial (named _profile) and they are all shown on a page of an accordian. How can I ...
1
vote
2answers
236 views

Ruby on rails: how to update an div with partial without making an ajax call to server

I want to update an div with contents of a partial when a user clicks on a radio button. Now the contents of that partial are static html (a form may be). So because I do not have any data to fetch ...
1
vote
1answer
216 views

Asp MVC partial does not validated

Scenario : Viewmodel dienstViewModel contains a AdresViewModel Public Class AdresViewModel <Required(ErrorMessage:="Gelieve een straatnaam op te geven")> ...
1
vote
4answers
154 views

ASP.NET MVC 2 Using an interface to strongly type a partial

I'm experimenting with ASP.NET MVC2, in particular viewmodels and partials. My question is: Is it ‘valid’ or ‘right’ to have your partials strongly typed against an interface and the have your ...
1
vote
1answer
171 views

Trouble passing locals in Partial

I have a partial called _avatar.html.erb I want to pass in an id as a local variable called entity_id which will be the id of an object. <% form_tag({:controller => "avatar", :action => ...
1
vote
3answers
7k views

Asp.Net MVC 3 - @Html.Action won't render/return any HTML

I've been moving a fairly new project from ViewPages to Razor today, and all seems to be going well. Except I'm trying to use Html.Action to render a user control and it won't render anything. So I ...
1
vote
1answer
572 views

Rails: Losing flash/errors from embedded form after redirect_to

This is a stupid example but I'm trying to understand how thing get passed around behind the scenes in Rails. And there's probably a better, "Rails", way to approach this...if so please let me know. I ...
1
vote
2answers
377 views

Rendering an active menu element in a menu partial in rails 3

I have a dynamic submenu that is rendered according to which page the user is on. I placed the following code in a _sub_menu.html.erb partial: <a href="/dashboard/index" ...
1
vote
2answers
2k views

Haml render multiple partials in layout

app/views/layouts/shared.html.haml: = render :partial => "shared/head" = yield = render :partial => "shared/footer" app/views/shared/_head.html.haml: !!!XML !!!1.1 %html{"xml:lang" ...
1
vote
2answers
1k views

Rails 3 widget helper partial

I ran into a big problem in moving my application to Rails 3. I have a view helper which i call 'WidgetHelper'. It helps to render some partials automatically when i refer to it. For example <%= ...
1
vote
1answer
661 views

Rails 3 render :partials

I am migrating my 1.8.7 rails app to rails 3. But I have a problem with a partial: I have the following partial: in my cms controller : @clients = Client.all group = render_to_string :layout => ...
1
vote
1answer
442 views

Rails Many to Many Relationship with occasional Nested Routes

As I am learning more about rails, and breaking my design thinking from ASP.Net days, I was considering a scenario this morning but did not know if it was possible to do. Practitioners have many ...
1
vote
3answers
410 views

Where to put partials shared by the whole application in Rails?

Where would I go about placing partial files shared by more than one model? I have a page called crop.html.erb that is used for one model - Photo. Now I would like to use it for another model called ...
1
vote
1answer
817 views

Including partial template

In sinatra's app, require 'rubygems' require 'sinatra' require 'haml' get '/new' do haml :new end get '/edit' do haml :edit end __END__ @@ layout %html %head %title %body = yield ...
1
vote
3answers
331 views

Rails syntax for comments in templates: is this bug understood?

Using rails 2.3.2 I have a partial _foo.rhtml that begins with a comment as follows: <% # here is a comment %> <li><%= foo %></li> When I render the partial from a view in ...
1
vote
2answers
1k views

Rspec partials problem

I am writing specs for View, that has a menu (which is in a partial) rendered in layout. I want to write specs for selected menu. Here is the code it "should have User Administration link" do ...

1 2 3