showPageSummary Option In Yii2
showPageSummary
: ชนิด boolean [ TRUE , FALSE ] จะแสดงผลรวมของฟิลด์ ใน grid view. ค่าเริ่มต้นจะกำหนดไว้เป็น FALSE
.
echo GridView::widget([
'dataProvider' => $dataProvider,
'hover' => TRUE,
'resizableColumns'=>true,
'showPageSummary' => true,
'columns' => [];
กำหนดใน column ที่ต้องการ sum
'pageSummary' => true
[
'headerOptions' => ['class' => 'text-center'],
'contentOptions' => ['class' => 'text-right'],
//'options' => ['style' => 'width:30px;'],
'attribute' => 'total_value',
'header' => 'มูลค่ารวม (บาท)',
'format'=>['decimal', 0],
'value' => function($data) {
return empty($data['total_value']) ? '0' : $data['total_value'];
},
'pageSummary' => true,
],
ไม่มีความคิดเห็น:
แสดงความคิดเห็น