Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a series of different blocks of HTML that i'd like to load into my partial "_right_column" based on the controller and action. What is the best way to conditionally load a partial based on the current controller & action, and where should this check occur?

share|improve this question

1 Answer

up vote 1 down vote accepted

You can check controller.controller_name and controller.action_name in your view.

Depending on how big the particular switch statement is, you will probably want to put it in a helper method in application_helper rather than into your partial _right_column.

share|improve this answer
Worked great - thx – cman77 Jul 2 '12 at 0:48

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.