How To Pass Extra Of Notes As Parameter To Clistview Getting Error Property "tblistview.notes" Is Not Defined

i have index function in my controller

rendering something like that

$this->render(‘index’, array(

        'model' => $model,


        'notes' => $notes


    ));

//======CListView Like That=============

$this->widget(‘bootstrap.widgets.TbListView’, array(

'dataProvider'=>$model->search(),


 'notes'   => $notes ,  


'itemView'=>'_view',

));

//===============================

passing notes as a extra parameter

how i get notes my render _view files is

// GETTING EROOR ( Property "TbListView.notes" is not defined. )

//==============_view files is under ======

<div class="view">

&lt;b&gt;&lt;strong&gt; &lt;?php echo CHtml::encode(&#036;data-&gt;getAttributeLabel('name')); ?&gt;&lt;/strong&gt;:&lt;/b&gt;


&lt;?php echo CHtml::encode(&#036;data-&gt;name); ?&gt;


&lt;br /&gt;





&lt;b&gt;&lt;?php echo CHtml::encode(&#036;data-&gt;getAttributeLabel('start_date')); ?&gt;:&lt;/b&gt;


&lt;?php echo CHtml::encode(&#036;data-&gt;start_date); ?&gt;


&lt;br /&gt;





&lt;b&gt;&lt;?php echo CHtml::encode(&#036;data-&gt;getAttributeLabel('end_date')); ?&gt;:&lt;/b&gt;


&lt;?php echo CHtml::encode(&#036;data-&gt;end_date); ?&gt;


&lt;br /&gt;





&lt;h5&gt;Notes&lt;/h5&gt;





&lt;?php


print_r(&#036;notes);exit;


&#036;criteria = new CDbCriteria();


&#036;criteria-&gt;limit = '1';


&#036;criteria-&gt;order = 'created_at DESC';





&#036;note = Notes::model()-&gt;findAllByAttributes(array(


    'parent_id' =&gt; &#036;data-&gt;id,


    'parent_type' =&gt; &quot;Projects&quot;


        ), &#036;criteria


);





foreach (&#036;note as &#036;note) {


    echo &#036;note-&gt;description;


}


?&gt;





&lt;hr&gt;

</div>

This could be useful

http://www.yiiframework.com/wiki/252/special-variables-in-cgridview-and-clistview