i have problem in calling action from different controller using renderPartial.
I have one controller 'SiteController'. In which i call action from another controller 'AbcController'.
$this->renderPartial('Abc/_jobList',array('value'=>$value));
But i get following error
SiteController cannot find the requested view "Abc/_jobList".
Even i use
$this->renderPartial('//Abc/_jobList',array('value'=>$value));
and i get same error.
How can i solve it??