listview html显示在Yii1.1中

时间:2016-09-01 14:41:59

标签: yii clistview

我没有从代码

获取任何输出html
$this->widget('zii.widgets.CListView', array(
    'id'=>'skills-grid',
    'itemView'=>'scheduled_skills',
    'dataProvider'=>$model->search(),
));

yii1.1中是否有可用于listview示例的演示? 请分享yii1.1

中listview示例的链接

1 个答案:

答案 0 :(得分:1)

您可以在Yii1.1

中将此代码用于ClistView

Clistview File for ex: index.php

$this->widget('zii.widgets.CListView', array(
    'id'=>'skills-grid',
    'itemView'=>'_scheduled_skills', // Your View file
    'dataProvider'=>$model->search(),
));

以前的ClistView查看文件: _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>

您可以在ClistView文件中直接访问$data对象。

你可以参考Link Yii1 ClistView