Skip to content

Instantly share code, notes, and snippets.

@egulhan
Created April 10, 2014 07:39
Show Gist options
  • Save egulhan/10352421 to your computer and use it in GitHub Desktop.
Save egulhan/10352421 to your computer and use it in GitHub Desktop.
Footer column usage in GridView, Yii
<?php
/**
* Can be used as sum of a column
*/
...
array(
'name'=>'first_col',
'footer'=>'<b>TOTAL:</b>'
),
array(
'name'=>'count',
'type'=>'number',
'footer'=>$provider->itemCount===0 ? '' : $model->getTotals(),
),
...
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment