วันจันทร์ที่ 30 กันยายน พ.ศ. 2562

yii2 ใส่สีลิงค์ GridView

การใส่สี yii2 ใส่สีลิงค์ GridView
[
                    'attribute'=>'รวม',
                    'format'=>'raw',
                    'value'=>function ($model) {
                        $drugid = $model['DRUG_ID'];
                        $amount = $model['รวม'];
                     return html::a(Html::encode($amount),['thaimed/inscl_drugttm_list','drugid'=>$drugid],['class' => 'badge btn-info','target'=>'_blank']);
                    
                    }
            ],

#########################################################################
กรณีใส่สีแบบครอบตัวหนังสือหรือเป็นbackground
[
                    'attribute' => 'DRUG_ID',
                    'format'=> 'raw', //จำเป็นต้องมี ไม่งั้นจะไม่แสดงสี
                    'header' => 'รหัสยา.',
                    'value' => function ($model) {
                        return '<span class="badge" style="background-color:#009966">' . $model['DRUG_ID'] . '</span>';
                    },

                ],

ไม่มีความคิดเห็น:

แสดงความคิดเห็น