Hi
I’m not sure i this a bug
But When i do in a CBehavior child class
$data=$model->findAll();
var_dump($data);
$this->owner->render('admingrid', array('model' => $model,
'dataValue'=>$data,
'modelClassName' => $this->modelClassName,
'pagination' => $this->pagination
it shows the data variable correctlly.However if i try to show it in the view file
dataValue
is empty.
I want to loop the model’s data in my view file.
What am i doing wrong?