Answer the question
In order to leave comments, you need to log in
How to sort checkboxes in gridview Yii2?
When editing data, there is a gridview in which a row is marked based on the condition
'class' => 'yii\grid\RadioButtonColumn',
'radioOptions' => function ($taxon) use ($floraTaxonId) {
return [
'value' => $taxon->id,
'checked' => $taxon->id == $floraTaxonId
];
}
Answer the question
In order to leave comments, you need to log in
this cannot be done at the display level, it is necessary to sort the data at the level of the SQL query / data provider
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question