This is a migrated thread and some comments may be shown as answers.

Custom footer for note

1 Answer 34 Views
Grid
This is a migrated thread and some comments may be shown as answers.
RGW
Top achievements
Rank 1
RGW asked on 20 Apr 2016, 03:26 PM

How can I add a custom footer with a simple unordered list of notes about the data being displayed?

 

 

1 Answer, 1 is accepted

Sort by
0
Alexander Popov
Telerik team
answered on 22 Apr 2016, 10:28 AM
Hi,

This can be done by manipulating the DOM after the Grid has been initialized. For example: 
$("#grid").kendoGrid({
    dataSource: dataSource,
    pageable: true,
    ...
}
 
$("#grid").getKendoGrid().pager.element.prepend("<div class='k-footer'> <ul><li>1</li><li>2</li></ul> </div>");


Regards,
Alexander Popov
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
Tags
Grid
Asked by
RGW
Top achievements
Rank 1
Answers by
Alexander Popov
Telerik team
Share this question
or