Yii2 Gridview - How use totals on footer property
问题 My VALUE column is: [ 'attribute' => 'value', 'format' => 'raw', 'contentOptions'=>['style'=>'width: 10%;text-align:left'], 'footer' => ??? ], How use totals of rows on FOOTER property ? 回答1: it's works 1. create class then 2.create column array, 3.configure column, 4.configure grid namespace app\components; class PTotal { public static function pageTotal($provider, $fieldName) { $total=0; foreach($provider as $item){ $total+=$item[$fieldName]; } return $total; } $provider = new