zoukankan      html  css  js  c++  java
  • yii2.0 DetailView 自定义样式

    GII 生成如下:

    <?= DetailView::widget([
        'model' => $model,
        'attributes' => [
            'id',
            ['label'=>'name','value'=>$model->name],
        ],
    ]) ?>

    自定义如下:

    <?= DetailView::widget([
        'model' => $model,
        'attributes' => [
            'id',
            ['label'=>'name','value'=>$model->name)],
        ],
        'template' => '<tr><th>{label}</th><td>{value}</td></tr>', 
        'options' => ['class' => 'table table-striped table-bordered detail-view'],
    ]) ?>
    输出后的HTML为:
    
        <table class="table table-striped table-bordered detail-view"><tr><th>Uid</th><td>1</td></tr><tr><th>gender</th><td>Female</td></tr></table>
    
    
    其它具体参数,可以参考【[yiiwidgetsDetailView](https://github.com/yiisoft/yii2/blob/master/framework/widgets/DetailView.php)】
    public $attributes;
    /**
     * @var string|callable the template used to render a single attribute. If a string, the token `{label}`
     * and `{value}` will be replaced with the label and the value of the corresponding attribute.
     * If a callback (e.g. an anonymous function), the signature must be as follows:
     *
     * ~~~
     * function ($attribute, $index, $widget)
     * ~~~
     *
     * where `$attribute` refer to the specification of the attribute being rendered, `$index` is the zero-based
     * index of the attribute in the [[attributes]] array, and `$widget` refers to this widget instance.
     */
    public $template = "<tr><th>{label}</th><td>{value}</td></tr>";
    /**
     * @var array the HTML attributes for the container tag of this widget. The "tag" option specifies
     * what container tag should be used. It defaults to "table" if not set.
     * @see yiihelpersHtml::renderTagAttributes() for details on how attributes are being rendered.
     */
    public $options = ['class' => 'table table-striped table-bordered detail-view'];
    /**
     * @var array|Formatter the formatter used to format model attribute values into displayable texts.
     * This can be either an instance of [[Formatter]] or an configuration array for creating the [[Formatter]]
     * instance. If this property is not set, the "formatter" application component will be used.
     */
    public $formatter;
    $options可以自由定义,比如:
    
    <?= DetailView::widget([
        'model' => $model,
        'attributes' => [
            'uid',
            ['label'=>'gender','value'=>$model->getGenderText()],
        ],
        'template' => '<tr><th>{label}</th><td>{value}</td></tr>', 
        'options' => ['class1' => 'table table-striped table-bordered detail-view'],
    ]) ?>
    
    
    定义为class1,输出的HTML为:
    <table class1="table table-striped table-bordered detail-view"><tr><th>Uid</th><td>1</td></tr>
    <tr><th>gender</th><td>Female</td></tr></table>

    本文摘自:http://www.yiichina.com/question/418

  • 相关阅读:
    Minimum Path Sum,最短路径问题,动态规划
    UniquePaths,UniquePaths2,路径问题。动态规划。
    LengthOfLastWord,字符串最后一个子串的长度
    间隔问题,合并间隔(merge interval),插入间隔(insert interval)
    矩阵螺旋遍历Spiral Matrix,Spiral Matrix2
    Centos 5.2 下配置 php 的 json 扩展
    一个睡五分钟等于六个钟头的方法
    js div 排除内部的点击事件 就是 冒泡的处理
    做微信开发 “人脉圈的” 总结
    YII 学习笔记
  • 原文地址:https://www.cnblogs.com/infozr/p/4167142.html
Copyright © 2011-2022 走看看