Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a sidebar that is going to have some logic in it, similar to how a view talks to a controller. Where do I put the logic in for the partial? Do I create a new controller for the layout and put it in there?

The layout is for logged in users, like a dashboard. The dashboard is going to have a sidebar that shows the same dynamic content on every page. Since it's being shown on every page I want to put it in a partial.

I'm just confused on where to put the find's and all that information.

share|improve this question

3 Answers

up vote 5 down vote accepted

Maybe there's a better way to do this, but if it's on most or all pages you could create a before_filter on your ApplicationController. You'll have to call skip_before_filter on the controllers/actions that don't need the data.

class ApplicationController < ActionController::Base
  before_filter :load_sidebar_data

protected
  def load_sidebar_data

  end
end

If you don't need it on most pages you'd still put the method in the ApplicationController, you'd just add the before filter where you need it.

share|improve this answer
Andy, you've been a huge help to me these past two days! Thanks! – Ryan Aug 21 '09 at 18:04
I have a sidebar which is the same on all pages except the homepage, and I'm using this code the grab the required data - now I'm wondering where is the correct place to put the actual view script code? – jackocnr Oct 30 '12 at 19:21

You might consider using Cells (view components for Rails): http://cells.rubyforge.org/

share|improve this answer

Put the partial in the layouts folder. The name of the file should start with an underscore For example, "_mypartial.html.erb".

Then, in your views, use the following code to include the partial

<%= render :partial => "mypartial" %>

Note that you do not include the underscore in the embedded ruby code when specifying which partial to render.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.