0
 <?php $this->widget('zii.widgets.CListView', array(
    'dataProvider'=>$dataProvider,
    'summaryText'=>'',
    'itemView'=>'_view',
)); ?>

我需要像这样的输出

__________________________
ID   : 10    ID   : 11
Name : XXX   Name : YYYY
Age  : 15    Age  : 20
Place: abc   Place:xyz
--------------------------
ID   : 12    ID   : 13
Name : aaa   Name : sss
Age  : 24    Age  : 27
Place: vvc   Place:xzss
--------------------------

如何为此改变我_view.php的?

这是为了打印凭证,所以我需要降低纸张成本,这就是我寻求这个解决方案的原因。

4

2 回答 2

0

你必须设置你的设计是这样的:

<div class="view">
    <table>
        <tr>
            <th><?php echo CHtml::encode($data->getAttributeLabel('ID')); ?>:</b></th>
            <td><?php echo CHtml::link(CHtml::encode($data->id), array('view', 'id'=>$data->id)); ?></td>
        </tr>
        <tr>
            <th><?php echo CHtml::encode($data->getAttributeLabel('name')); ?>:</b></th>
            <td><?php echo CHtml::link(CHtml::encode($data->name), array('view', 'id'=>$data->name)); ?></td>
        </tr>
        <tr>
            <th><?php echo CHtml::encode($data->getAttributeLabel('age')); ?>:</b></th>
            <td><?php echo CHtml::link(CHtml::encode($data->age), array('view', 'id'=>$data->age)); ?></td>
        </tr>
        <tr>
            <th><?php echo CHtml::encode($data->getAttributeLabel('place')); ?>:</b></th>
            <td><?php echo CHtml::link(CHtml::encode($data->place), array('view', 'id'=>$data->place)); ?></td>
        </tr>
    </table>
</div>

设置一些 CSS:

<style>
    table, td, th
    {
        border:1px solid green;
    }
   th
  {
      background-color:green;
      color:white;
  }
</style>
于 2013-07-25T15:39:48.583 回答
0

您可以使用 Mohit Bhansali 发布的 HTML。但是您必须先添加更多 CSS:

.view {
    float: left;
    width: 250px; /* or other width */
}

然后在你的_view.php你清除顶部的浮动,对于第二个项目。您可以使用预定义的$index变量:

<?php if($index!=0 && $index%2==0): ?>
    <div style="clear:left"></div>
<?php endif; ?>
于 2013-07-26T06:27:59.267 回答