How to remove summary and sorter for a particular grid view in Yii2. In Yii1.1 we can do that by setting the template property. In yii2 how to achieve this?
Set the paremeter summaryText to empty string:
summaryText
array( 'summaryText' => '', 'dataProvider' => $model->search(), ...