Creating footer for entire kendo angular data grid (not for column)

1 Answer 23 Views
Grid Pager
Vsevolod
Top achievements
Rank 1
Iron
Vsevolod asked on 06 Feb 2024, 11:50 AM

Hello!

Can I to create footer for entire kendo angular data grid (not for column)?

I need to add additional control between grid 's data and grid's pager control.

Maybe I can create my own custom pager control in two lines, but I haven’t found how to do it.

<ng-template kendoPagerTemplate> - arranges controls in one line.

 

1 Answer, 1 is accepted

Sort by
0
Accepted
horváth
Top achievements
Rank 2
Iron
Iron
answered on 06 Feb 2024, 06:53 PM

Use the kendoGridStatusBarTemplate:


<ng-template kendoGridStatusBarTemplate>
      <some-component></some-component>
    </ng-template>


Vsevolod
Top achievements
Rank 1
Iron
commented on 07 Feb 2024, 06:44 AM

Thanks!

I was trying to add 

<ng-template kendoGridStatusBarTemplate>

with position='bottom', but it was placed below pager control.

I need to add the control between grid's data and grid's pager control.

Vsevolod
Top achievements
Rank 1
Iron
commented on 07 Feb 2024, 06:49 AM

Thanks!

Without setting a specific position, it works!

Tags
Grid Pager
Asked by
Vsevolod
Top achievements
Rank 1
Iron
Answers by
horváth
Top achievements
Rank 2
Iron
Iron
Share this question
or