I want to remove the line which is show in attached screen shot from my page.How can I edit this from my yii2 project
The best way to do this is to override the layout of the gridView
widget. By default, the widget will generate a layout based on this pattern; {summary}\n{items}\n{pager}
. You can control over what appears in the widget like this;
echo GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'layout' => '{items}\n{pager}',
'columns' => [
// ...
],
]);
In gridview
options set summary
to NULL
echo GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'summary' => '',
'columns' => [
// ...
],
]);
In your grid view , use summary as empty:
echo GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'summary' => '',
]);
For more options of grid view check this link click here...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With