Answer the question
In order to leave comments, you need to log in
Formatting output in Gridview yii2?
There is such a code
<?= GridView::widget([
'filterUrl' => Url::toRoute('index'),
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
[
'attribute'=> 'body',
'format'=> 'text'],
],
]); ?>
Answer the question
In order to leave comments, you need to log in
[
'attribute'=> 'body',
'value' => function($model){return strip_tags($model->body);},
],
public function getPureBody(){
return strip_tags($this->body); //тут же можно добавить обрезку по длинный, если это длинный текст
}
'columns' => [
[
'attribute'=> 'body',
'value' => 'pureBody'},
],
]
'columns' => [
'pureBody'
]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question