Is there a way to render a controller to a different view then normal? I\'m trying to pass some data from the controller to a non-default view. Meaning my controller is called:<
class StocksRealtimeController extends AppController { var $uses = 'StockRealtime'; function index(){ $this->layout = NULL; $this->autoRender = false; $this->set('stocksRT', $this->StockRealtime->find('all')); $this -> render(`/TestView/index`); } }