Skip to content

Instantly share code, notes, and snippets.

@beatcode
Created December 21, 2014 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beatcode/1559515b0006254d84ad to your computer and use it in GitHub Desktop.
Save beatcode/1559515b0006254d84ad to your computer and use it in GitHub Desktop.
yii2 Checkbox als Ja Nein
<!--Or you could add a getDischargedLabel() function in your model :-->
public function getDischargedLabel()
{
return $this->discharged ? 'Yes' : 'No';
}
<!--And in your gridview :-->
[
'attribute'=>'discharged',
'value'=> 'dischargedLabel',
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment