I have a jqgrid with data loading from an xml stream (handled by django 1.1.1):
jQuery(document).ready(function(){ jQuery(\"#list\").jqGrid({ url:\'/do
Unloading the grid before making a new request seem to bust the cache for me. Simple use GridUnload() method before the grid fetching code.
$("#list").GridUnload(); jQuery("#list").jqGrid({ ... ajaxGridOptions: {cache: false} });