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?
if you want only grid items use 'layout'=>"{items}"
'layout'=>"{items}"
if you want only summary use 'layout'=>"{summary}"
'layout'=>"{summary}"
if you want only sorter use 'layout'=>"{pager}"
'layout'=>"{pager}"