0

我正在为我的网站创建反馈页面,我正在使用 gridview 来显示反馈列表。在 gridview 的一行中,我想在一个框中填写照片、日期和用户名。我确实在盒子上放了照片。但我想知道如何放置另一个数据

风景:

[   'attribute' => 'iduser.photo',
            'format' => 'html',
            'value'=>  function($data) { return Html::img($data->imageurl,['id'=>'photo']); },
            'contentOptions'=>['style'=>'max-width: 10px; max-height: 10px'],
        ],

来自模型/反馈实体的反馈属性:

 * @property integer $ID_KOMENTAR
 * @property integer $id
 * @property string $KOMENTAR //comment
 * @property string $TANGGAL  //date
 * @property User $iduser     //related to the user

以及反馈和用户的相关性。反馈有一个用户名,用户名有多个反馈

public function getIduser()
{
    return $this->hasOne(User::className(), ['id' => 'id']);
}

用户实体:iduser、用户名、照片

4

2 回答 2

2

我在 Yii 1 中做了同样的事情。希望它可以帮助你。您可以自定义任何列,并且可以将任何 html 放在那里。我会给你一个小例子:)

在视图文件中编写 cgridview 代码。我正在调用一个函数来获取列的值,在该函数中您可以相应地创建代码。在我的示例中,列名是Office Managers,函数名是getManagerListFromOfficeBranch

<?php $this->widget('zii.widgets.grid.CGridView', array(
    'dataProvider'=>$dataProvider,
        'id' => 'user-grid',        
        'columns'=>array(
         array(                    
                    'class' => 'CButtonColumn',
                    'name',              
                    'email',
                 array(
                     'name'=>'Office Managers',  
                     'type'=>'raw', //for allowing raw html
                     'value'=>'customFunctions::getManagerListFromOfficeBranch($data->officeid)' //here I have created custom function that will get managers of office branch from office table ($data is used to get any value from current row of branch{you can send your feedback id here if you want any info from feedback toggle}only use if you want to )
                     ),
                   ),

    ),

)); ?>

现在将你的函数写在一个文件中。您可以在名称为 includes 的受保护文件夹中创建一个文件夹,并将此文件保存在包含文件夹 路径 Exm 中:/protected/includes/customFunctions.php

在 config/main.php 中包含该文件

Exm: require_once realpath(__DIR__ . ‘/../includes/customFunctions.php’);

功能

<?php

class customFunctions{

     public static function getManagerListFromOfficeBranch($officeid) {   
        $managerDetails=Office::model()->findAllByAttributes(array('officeid'=> $officeid));  //Office is the model object of Office Table       
        $managerList='';
        foreach ($managerDetails as $key => $value) {
            $managerList=$managerList.$value->manager->first_name." ".$value->manager->last_name."<br/>";
        }
        echo $managerList;        //all managers echo line by line in the column
     echo CHtml::link('Users',array('Users/action')); //write custom HTML Here 
    }
?>
于 2015-08-27T14:17:03.673 回答
1

我没有测试过,但这对你有用

public function actionIndex()
{
    $dataProvider = new ActiveDataProvider([ 'query' => Feedback::find()->with('iduser')->orderBy(['ID' => SORT_ASC, 'TANGGAL' => SORT_ASC])]);
    return $this->render('index', [ 'dataProvider' => $dataProvider ]);
}

在你看来

<?= GridView::widget([
    'dataProvider' => $dataProvider,
    'columns' => [
        ['class' => 'yii\grid\SerialColumn'],
        'id',

        // user attributes examples
        [   
            'attribute' => 'iduser.photo',
            'value' => function($model)
            { 
                return Html::img($model->iduser->imageurl,['id'=>'photo']); 
            },
            'contentOptions' => [
                'style' => 'max-width: 10px; max-height: 10px'
            ],                      
            'format' => 'raw',
        ],
        // or in this mode
        [   
            'value' => 'iduser.username'
        ],
        ...................

        // your feedback attributes 

        'KOMENTAR',
        'TANGGAL',  

        // actions colum
        ['class' => 'yii\grid\ActionColumn'],
    ],
]); ?>

希望这是你需要的

于 2015-08-26T12:18:39.793 回答