Created
July 29, 2020 08:11
-
-
Save sorokadima/8c4f5b356bf7322d43dcb80b6b32dd92 to your computer and use it in GitHub Desktop.
Yii2 DataColumn render HTML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// ... | |
[ | |
'class' => 'kartik\grid\DataColumn', | |
'attribute' => 'foo', | |
'format' => 'html', // <===== | |
'value' => function (Limit $model) { | |
return '-'; | |
}, | |
'label' => Yii::t('panel', Yii::t('panel', 'Foo')), | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment