From action I am rendering a view and passing data to view
public function actionSome(){
//code
$this->render('someView', 'model'=>$model);
}
Now in view i am calling renderPartial and passing the model variable in that I want that the data that was sent to view should be first utilized by view of renderPartial and the by the view that was rendered by action. How to do this? Thanks in advance