Print layouts?

Hey folks, I was looking to make a print-specific page for an application I’m building. I’m not sure what the best way to go about this is - I’m trying to make a layout, called ‘print’, that the user will be redirected to when they click a link that takes them to a controller, which then checks for a $_GET variable called print. If it exists, they will be sent to a widget rendered in a print layout. If anybody has suggestions for a better way to do this, spit them at me :)

Unfortunately, I can’t seem to figure out how to render a view in a different layout. I perused the documentation, but I must be missing something. Can anybody help?

In the controller’s action use

$this->layout = (The layout to use)

Ah, thanks Spyros - that’s just what I needed.