I needed this functionality too. What I did is that I added a “print” button in the toolbar.
Then with jQuery, I clone jqGrid table in a new window (a bit dirty to find the table, but It works, even if you have multiple tables on your page) :
// Parent container of the “list” DIV (In my case, I have a DIV includind all elements of a jqGrid table) var idMasterDiv = $('#'+gridName).parent().parent().attr('id');
// Find jqGrid table to print $('div[id^=”jqgh”]').each ( function() {