Priyanka Ahire
Priyanka Ahire

Reputation: 502

How to remove summary text In yii2?

enter image description here

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

Upvotes: 6

Views: 12313

Answers (3)

Joe Miller
Joe Miller

Reputation: 3893

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' => [
    // ...
      ],
]);

Upvotes: 21

Amitesh Kumar
Amitesh Kumar

Reputation: 3079

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...

Upvotes: 4

ck_arjun
ck_arjun

Reputation: 1417

In gridview options set summary to NULL

echo GridView::widget([
   'dataProvider' => $dataProvider,
   'filterModel' => $searchModel,
   'summary' => '',
   'columns' => [
    // ...
      ],
]);

Upvotes: 14

Related Questions