$this->widget('zii.widgets.CListView', array(
'dataProvider' => $dataProvider,
'viewData'=> array('hello'=> $loop),
'itemView' => '_projectView',
'template' => '{items} {pager}',
));
i would like to pass a value to my _projectView page for each loop mean for 1st row it will be 1 2nd for 2 3rd for 3 and so on
There is a variable called
$index
available inCLIstView
on each item:This can be accessed directly in the view, eg:
echo $index
Note that it is zero based, so in your first view it would have a value of 0, in your second it would have a value of 1 etc..
Documentation