我没有从下面的代码中得到任何输出 html
$this->widget('zii.widgets.CListView', array(
'id'=>'skills-grid',
'itemView'=>'scheduled_skills',
'dataProvider'=>$model->search(),
));
yii1.1中的listview示例有没有可用的demo?请分享yii1.1中listview示例的链接
ClistView
您可以在 Yii1.1中使用此代码
前 Clistview 文件:index.php
$this->widget('zii.widgets.CListView', array(
'id'=>'skills-grid',
'itemView'=>'_scheduled_skills', // Your View file
'dataProvider'=>$model->search(),
));
ClistView 查看文件 ex : _scheduled_skills.php
<table class="table">
<tbody>
<tr>
<td><span class="title"><strong> First Name</strong> </span></td>
<td><span class="title"><?php echo $data->first_name;?></td>
</tr>
<tr>
<td><span class="title"><strong>Last Name</strong> </span></td>
<td><span class="title"><?php echo $data->last_name;?></td>
</tr>
</tbody>
</table>
您可以直接访问$data
ClistView 文件中的对象。
你可以参考这个链接 Yii1 ClistView