Home  >  Article  >  Backend Development  >  yii 2.0 GridView-custom buttons and links, yiigridview-_PHP tutorial

yii 2.0 GridView-custom buttons and links, yiigridview-_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:11:40993browse

yii 2.0 GridView-custom buttons and links, yiigridview-

Post the code directly:

<?= GridView::<span>widget([
        </span>'dataProvider' => <span>$dataProvider</span>,
        <span>//</span><span>'filterModel' => $searchModel,</span>
        'columns' =><span> [
            [</span>'class' => 'yii\grid\SerialColumn'],
            <span>//</span><span>显示的字段
            //code的值</span>
            ['attribute'=>'这是测试code','value'=><span>function</span>(){<span>return</span> 'abc';}],
            'name',
            'population',<span>
            
            [</span>'class' => 'yii\grid\ActionColumn','header' => '操作',],<span>
            [
                </span>'label'=>'更多操作',
                'format'=>'raw',
                'value' => <span>function</span>(<span>$data</span><span>){
                    </span><span>$url</span> = "http://www.baidu.com"<span>;
                    </span><span>return</span> Html::a('添加权限组', <span>$url</span>, ['title' => '审核'<span>]); 
                }
            ]        
        ]</span>,<span>
    ]); </span>?>

The effect is as shown below:

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/927469.htmlTechArticleyii 2.0 GridView-custom buttons and links, yiigridview-post the code directly: ?= GridView:: widget( [ 'dataProvider' = $dataProvider , // 'filterModel' = $searchModel, 'columns' =...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn