Answer the question
In order to leave comments, you need to log in
Yii2 Need to integrate widget into StarRating GridView?
There is a need to insert the StarRating widget into the GridView widget, how to do it?
GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'responsiveWrap' => false,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
[
'header' => 'Тут ннннада звездочки',
'value' => function($model){
return StarRating::widget([
'name' => 'rating_21',
'value' => 2,
'pluginOptions' => [
'readonly' => true,
'showClear' => false,
'showCaption' => false,
],
]);
}
]
],
]);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question