I am in progress of migrating an app from CakePHP 1.3 to 2.0, and have noticed a problem with the ajax parts of my app, in that CakePHP is serving up Ajax responses with the default.ctp layout, and not my ajax.ctp.
Is there anything I need to do in particular to get the ajax layout to work? It's currently located in View/Layouts/ajax.ctp with my default.ctp which works fine.
$this->layout = 'ajax'in your method? – Ross Aug 1 '11 at 13:25$this->request->is('ajax')? – Dunhamzzz Aug 1 '11 at 13:36