Hi,
I have paging enabled and I would like to add a html button on that same toolbar. I have tried appending like this forum suggested, but it doesn't seem to work ( https://es.infragistics.com/community/forums/t/66059.aspx ). Any suggestions or updates?
Thanks
Hello Edward,
You may access the grid pager through it's jQuery id selector and append the desired html to it, for example: $("#grid_pager").append("<button>Click</button>"). Attached is a sample for your reference.
If you have further questions, please let me know.
Regards,Tsanna
So I tested your sample and it works there. However, for some reason I cannot get the same affect with my grid, which is written in Razor. One thing I noticed is that the sample you gave me, "Show x records" appeared on the bottom with the other paging options, but mine is at the top of the grid (where I want the button to be placed). Is it because the grid is rendered first before appending the button?