仅列出yii的Tbgridview中的特定数据值

时间:2014-08-20 11:09:53

标签: php gridview yii yii-extensions

我有一个属性idC,它可能包含任何正整数。 因此,如果idC具有2,3等值,那么3次出现4次,2次变为2次。 现在,我想列出一个页面只有idC = 3的数据值 和另一个页面的idC = 2,依此类推。 但是如何做到这一点。

这是上市代码:

<?php
$this->widget('bootstrap.widgets.TbGridView',array(
'id'=>'Subjects-grid',
    'dataProvider'=>$model->search(),
    'type'=>'striped bordered condensed',
    'template'=>'{summary}{items}{pager}',
    'columns'=>array(
        array('header'=>'<a>S.N.</a>',
            'value'=>'$data->id_subjects',
            'htmlOptions'=>array('width'=>'70px'),
        ),
        'idC=$idC',
        array(
            'header'=>'<a>Subject</a>',
            'value'=>'$data->subject',
        ),
        'staff_type',
       'sub_subject',
        array(
            'class'=>'bootstrap.widgets.TbButtonColumn',
            'header'=>'<a>Actions</a>',
            'template' => '{view} {update}',
            'buttons' => array(

                'view' => array(
                    'label'=> 'View',
                    'options'=>array(
                        'class'=>'btn btn-small view'
                    )                ),

            'update' => array(
                'label' => 'Update',
                'options' => array(
                    'class' => 'btn btn-small update'
                )
            ),

            ),
            'htmlOptions'=>array('nowrap'=>'nowrap'),
        )
    ),
)); ?>

这是视图页面。 enter image description here

0 个答案:

没有答案