How to add custom text to the footer of an MVC telerik grid
I am using the telerik MVC grid extension in my MVC2 application, and I would like to add a custom piece of text (a record cou开发者_运维技巧nt) in the footer. I don't want to use paging in this particular case.
Is this supported?
Currently there is nothing built-in which you can use. We will be adding footer templates in our next release. Till then you can try some jQuery magic to inject the required HTML:
$('#Grid').find('.t-grid-footer').append("some HTML")
精彩评论