Hi
picking view in phalcon 3 doen't work same as phalcon 2..!!! when I switch mamp from PHP 7.08 and Phalcon 3.01 to PHP 5.6.10 and Phalcon 2.013 it works properly my code doesn't work properly on phalcon 3 and php 7 as it used to..?!?
public function editAction()
{
if ($this->request->isAjax()) {
/// operation
}
$this->view->pick("path/to/customview");
}
my aim is showing and picking custom view on ajax call to update part of current page which used to work.
I have already tried
$this->view->setRenderLevel
and
$this->view->disable()
and also
$this->view->disableLevel
it s funny cuz I am getting error Error: Class MyNameSpace\Controllers\View not found
...